@import url('https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&family=Silkscreen:wght@400;700&display=swap');
/* "Funnel Display", sans-serif
"Silkscreen", sans-serif */

:root {
    --branco: #ECEAFF;
    --verde: #AFE27B;
    --rosa: #db77b3;
    /*--roxo: #160331;*/
        --roxo: #220649;
}

#sobre {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60%;
    margin: 100px 0px 100px 0px;
}
#explorando {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    width: 60%;
}
#explorando p {
    font-size: 20px;
}
#objetivo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60%;
    margin: 100px 0px 100px 0px;
}

#img-key {
    width: 400px;
    height: 250px;
    border-radius: 7px;
    border-color: var(--roxo);
    border-width: 3px;
    border-style: solid;
    box-shadow: var(--roxo) 8px 8px 0px;
}

.side {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    width: 80%;
    align-items: center;
}
#ex {
    width: 60%;
}
#img-globo {
    width: 400px;
    height: auto;
}
#img-neko {
    width: 170px;
    height: auto;
}
#obj {
    width: 60%;
}

@media screen and (max-width: 920px) {
    .side {
        flex-direction: column;
        width: 100%;
        gap: 0px;
    }
    
    #sobre, #objetivo, #explorando, #ex, #obj {
        width: 94%;
        margin: 30px 0px 0px 0px;
    }
    #sobre .content, #objetivo .content, #explorando .content {
        text-align: center;
        padding: 20px;
    }

    #sob {
        flex-direction: column-reverse;
    }
    #sobre .content {
        font-size: 11px;
    }
    #img-key {
        width: 80%;
        height: auto;
        margin-top: 40px;
    }
    #img-globo {
        width: 30%;
        height: auto;
    }
    #img-neko {
        height: auto;
        margin-top: 10px;
    }
}