body {
    font-family: 'Poppins', sans-serif;
    background-color: #F7F2EE;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
}

::selection {
    background: #d8c4b4;
}

.container {
    width: 1000px;
    padding: 40px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
}

.logo {
    width: 180px;
    margin: 30px auto;
    display: block;
}

h1 {
    margin-top: 50px;
}

.subheadline {
    font-weight: 400;
    font-size: 18px;
}

button {
    width: 25%;
    padding: 15px;
    background-color: #322b26;
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 19px;
    margin-top: 30px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.large-button {
    width: 40%;
}

button:hover {
    background-color: #1b1918;
}

.disabled-button {
    background-color: #a0a0a0;
    cursor: not-allowed;
}

.disabled-button:hover {
    background-color: #a0a0a0;
}

button i {
    margin-right: 5px;
}

a {
    text-decoration: none;
}

@media screen and (max-width: 600px) {
    body {
        margin: 0;
    }

    .container {
        width: 90%;
    }

    button {
        width: 100%;
    }

    .large-button {
        width: 100%;
    }
}