/*                    Variáveis                    */

:root{
    --fonte-principal: "Sofia Sans Extra Condensed", sans-serif;
    --cor-texto-preto: black;
    --cor-texto-branco: white;
    --cor-fundo: white;
    --cor-verde: #99ca00;
    --cor-laranja: #ff7e00;

}

.gallery {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.display-frame {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.thumbnails {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.thumbnails img{
    height: 100px;
    border-radius: 10px;
}

#displayed-image{
    width: 700px;
    border-radius: 5px;
    border: 3px solid #ff7e00;
}

#project-description{
    margin-bottom: 30px;
    width: 600px;
    text-align: center;
    font-size: 18px;
} 

.m_display{
    display: none;
}




/*-----------------------MOBILE----------------------*/
/*-----------------------MOBILE----------------------*/
/*-----------------------MOBILE----------------------*/

@media screen and (max-width: 950px){
    .gallery{
        display: none;
    }
    
    .m_display{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }

    .m_display p{
        width: 75vw;
        margin-bottom: 20px;
        text-align: center;
    }

    .m_display img{
        width: 80vw;
        height: auto;
        margin-bottom: 10px;
        border-radius: 10px;
    }
}
