
*, body {
    font-family: 'Aladin', cursive;
    margin: 0;
    box-sizing: border-box;
}

#main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    padding-bottom: 20px;
    background-color: #9ECEE6;
}

.title {
    margin: 0.5em;
    font-size: 4em;
    color: #FEEA99;
    text-shadow: 1px 1px 2px black;
}

.center {
    display: flex;
    width: 100vw;
    height: 100%;
}

.bg {
    width: 40%;
    height: 100%;
    /* background-image: url("/images/iago3.png");
    background-size: contain;
    background-repeat: no-repeat; */
}

.btn {
    display: flex;
    flex-wrap: wrap;
    max-width: 50%;
}

.btn .button {
    width: 50%;
}

button {
    white-space: normal; 
    max-width: 200px;
    min-width: 200px;
    font-size: 2em;
    background-color: #F6A74A;
    margin: 10px 20px;
    padding: 20px;
    border-radius: 8px;
}

#secret {
    display: none;
}


@media screen and (max-width: 805px) {
    .bg {
        width: 30%;
    }
    .btn .button {
        width: 100%;
    }
    .button button {
        margin-left: 25%;
    }
    button {
        white-space: normal; 
        max-width: 150px;
        min-width: 150px;
        font-size: 1.2em;
        margin: 10px 20px;
        padding: 20px;
        border-radius: 8px;
    }
}