@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Playwrite+DE+SAS+Guides&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lobster&family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&family=Playwrite+AU+QLD:wght@100..400&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

body{
    width: 100%;
    height: 100vh;
    border: 0;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Lobster", sans-serif;
    background-color: antiquewhite;
}

header{
    width: 100%;
    height: 13vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    box-shadow: 5px 5px 50px;
    position: fixed;
    z-index: 1;
}

h1{
    margin-bottom: 0;
    font-size: 20pt;
}

h2{
    margin-top: 0;
    font-size: 15pt;
}

h1, h2{
    margin-left: 10px;
}

img{
    width: 70px;
}

.logo{
    width: 10vw;
    border-right: 2px solid #aaaaaa;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nome{
    width: 70vw;
}

.logoNu{
    width: 20vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logoNu > img{
    width: 150px;
}


/*----------------Main-----------------*/


.imgs{
    width: 250px;
    height: max-content;
    /* background-color: aqua; */
    border-radius: 10px;
    margin: 30px;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    box-shadow: 5px 5px 10px;
    position: relative;
}

main{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-top: 16vh;
    width: 80%;
}

.imgs > img{
    width: 230px;
    margin: 10px;
}

.info{
    width: 230px;
    margin: 10px;
    margin-top: -127px;
    background-color: rgba(0, 0, 0, 0.489);
    color: #ffffff;
    /* display: none; */
}

.info > p{
    margin: 3px;
    font-size: 10pt;
    margin: 3px;
}

.imgs:hover{
    cursor: pointer;
    /* position: absolute; */
    transform: scale(1.3);
    transition: 0.5s;
}



/*-----------------------footer------------------------*/



footer{
    width: 100%;
    height: 15vh;
    background-color: black;
    display: flex;
    flex-direction: row;
}

footer > div{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    color: #ffffff;
}

.logoFooter{
    width: 30px;
    margin: 0;
}

footer > div > div{
    align-items: center;
}

.cont{
    width: 30px;
    border-radius: 5px;
    margin-right: 10px;
}

footer > div > a > div{
    display: flex;
    flex-direction: row;
    align-items: center;
}

a{
    text-decoration: none;
    color: #ffffff;
}

footer > div > div > h3{
    margin: 5px;
}

.footerP1{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.footerP1_1{
    display: flex;
    flex-direction: column;
}

.logoNuarte{
    width: 60px;
    border-radius: 50%;
}

@media screen and (max-width: 600px) {
    .logoNu{
        width: 150px;
    }
    h1{
        font-size: 15pt;
    }
    .logo{
        width: 20vw;
    }
}