
body {
    background: #ffe4ec;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.container {
    text-align: center;
    margin-top: 60px;
}
h1 {
    font-family: 'Brush Script MT', cursive, sans-serif;
    color: #d72660;
    font-size: 3rem;
    margin-bottom: 24px;
    font-weight: bold;
    letter-spacing: 2px;
}
p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    color: #a81d4d;
}
.buttons{
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}
a, button {
    background: #ffd6e6;
    color: #d72660;
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0 8px;
    box-shadow: 0 2px 8px rgba(215,38,96,0.08);
}
a:hover, button:hover {
    background: #f8bbd0;
}
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    .container {
        margin-top: 20px;
    }
    a, button {
        padding: 10px 16px;
        font-size: 1rem;
    }
}
