@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400&display=swap');

body {
    margin: 0;
    background-color: #f3f3f3;
    font-family: Arial, sans-serif;
    color: #012046;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 40px);
    padding: 20px;
}

.container {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 3px 0 24px rgba(0, 0, 0, 0.07);
    padding: 40px 60px;
    max-width: 500px;
    text-align: center;
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    margin-bottom: 30px;
}

a.button {
    display: inline-block;
    background-color: #f0c32e;
    color: #012046;
    text-decoration: none;
    padding: 12px 24px;
    font-weight: 500;
    transition: background-color 0.3s;
}

a.button:hover {
    background-color: #f9cd3c;
}

@media (max-width: 600px) {
    .container {
        padding: 20px 30px;
    }

    h1 {
        font-size: 32px;
    }

    p {
        font-size: 16px;
    }

    a.button {
        padding: 10px 20px;
        font-size: 14px;
    }
}