body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f8b5dc;
}

* {
    box-sizing: border-box;
}

.container {
    width: 960px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 20px;
    background-color: #e64d8d;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(126, 83, 83, 0.1);
}

.content {
    padding: 30px;
    background-color: #edcff1;
    border-radius: 30px;
    text-align: center;
}