@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;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-13px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* olá, mundo! */
.start {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    width: 60%;
    margin: 150px 0px 190px 0px;
    animation: float 4s ease-in-out infinite
}

.start h1 {
    text-align: center;
    max-width: 500px;
    font-family: "Funnel Display", sans-serif;
    font-size: 450%;
    text-shadow: var(--branco) 2px 2px 10px;
    margin-top: 5px;
}
.start h2 {
    text-align: center;
    max-width: 500px;
    font-family: "Silkscreen", sans-serif;
    font-weight: 400;
    font-size: 260%;
    text-shadow: var(--branco) 2px 2px 10px;
}

.start img {
    width: 300px;
    height: auto;
    rotate: calc(-6deg);
    border-radius: 200px;
    border-color: var(--roxo);
    border-width: 3px;
    border-style: solid;
    box-shadow: var(--roxo) 8px 8px 0px;
    animation: float 9s infinite;
}

/* conteúdo do card*/
.content h2 {
    text-align: center;
    line-height: 35px;
}

li {
    margin-bottom: 15px;
    font-size: 17px;
    font-weight: 500;
}

.side {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    width: 60%;
    margin: 40px 0px 40px 0px;
}
#sobre {
    width: 60%;
}
#sobre .content {
    font-size: 18px;
}
#left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 60%;
}

#skill .head {
    backdrop-filter: blur(80px);
}
#skill {
    justify-content: flex-end;
}
#skill .content {
    font-size: 15px;
}


#frase {
    font-family: "Silkscreen", sans-serif;
    font-size: 30px;
    text-align: center;
    font-weight: 400;
    margin: 40px 0px 40px 0px;
}

#projetos .content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    padding: 1%;
}
#projetos img {
    width: 50%;
    height: auto;
    border-radius: 15px;
    border-width: 3px;
    padding: 1%;
}
#projetos .head {
    color: var(--branco);
}
#projetos video {
    width: 50%;
    height: auto;
    padding: 5px;
}
#projetos{
    width: 60%;
}

@media screen and (max-width: 920px) {
    .start {
        flex-direction: column;
        width: 100%;
        margin: 60px 0px 60px 0px;
    }
    .start h1 {
        font-size: 300%;
    }
    .start h2 {
        font-size: 150%;
    }
    .start img {
        width: 200px;
    }

    .side {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    #sobre, #left, #projetos {
        width: 93%;
    }
    #sobre .content {
        font-size: 13px;
        padding: 15px;
    }
    #fix {
        font-size: 30px;
    }

    
}