body {
    background-color: #F4E2C2;
    font-family: 'Poppins', sans-serif;
}

.container {
    width: 100%;
    height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.header {
    margin-bottom: 100px;
}

.title {
    font-size: 24px;
    font-weight: 700;
    color: #3C7962;
}

.subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #0D522C;
}

.logo {
    width: 150px;
    height: 150px;
}

.button {
    width: 250px;
    border: 0;
    padding: 10px;
    background-color: #77BBA2;
    color: #0D522C;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
}
.buttons {
    display: flex;
    flex-flow: column;
    gap: 10px;
}

.footer {
    margin-top: 100px;
    font-size: 10px;
    color: #0D522C;
}

.footer a {
    color: #0D522C;
    text-decoration: none;
}