@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap'); /*Roboto*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap'); /*Open Sans*/
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300&display=swap');/*Source Sans Pro*/
@import url('https://fonts.googleapis.com/css2?family=Nunito&display=swap');/*Nunito*/

    body {
    background-color: rgb(22, 22, 22);
    color: rgb(214, 207, 207);
    }
    
    * {
        padding: 0cm;
        margin: 0cm;
    }
    
    .header {
        height: 55px;
        background-color: transparent;
        justify-content: space-between; /*'justify-content' só funciona se o 'dispaly' for 'flex'*/
        display: flex;
        width: 100%;
        align-items: center;
        box-sizing: border-box;
    
    }
    
    #logo {
        width: 30px;
        height: 30px;
        padding-left: 21px;
        margin: 7px;
        margin-top: 13px;
    }
    
    
    ul {
        display: flex;
        flex-wrap: wrap;
    }
    
    li {
        color: aliceblue;
        list-style: none; /*'list-style' seve para personalizar as bolinhas que têm em uma lista, quando se coloca 'none' tira as bolinhas*/
        cursor: pointer; /*quando o mouse passar em cima aparecerá uma mãozinha*/
        padding-left: 1rem;
        padding-right: 0.9rem;
        margin: 18px;
        font-family: 'Roboto', sans-serif;
    }
    
    a {
        text-decoration: none;
    }

    a :hover{  /*quando o mouse estiver em cima irá mudar de cor*/
        color: rgb(0, 0, 0);
        font-size: 11.9pt;
        transition: 0.2s;
    }
    
    #cape {
        width: 100%;
        height: 100%;
    }
    
    #tophm {
        color:white;
        font-size: 25px;
        padding-left: 5px;
        margin: 7px;
        padding-top: 8px;
        font-family: 'Open Sans', sans-serif;
        font-size: 14pt;
        letter-spacing: 1px;
    }
    
    #top-logo {
        display: flex;
        justify-content: space-between;
    }

.backgroundandlogo {
    height: 309px;
    width: 100%;
    background: linear-gradient(45deg, rgb(0, 0, 0), rgb(32, 90, 18), rgb(33, 80, 36));
    background-size: 100%;
    animation: colors 12s ease infinite;
    box-shadow: 10px 5px 10px rgb(11, 70, 28); /*sombra em baixo da imagem principal*/
   
}

@keyframes colors {
    0% {
        background-position: 0% 50%;
    }

    50%{
        background-position: 100% 50%;
    }

    100%{
        background-position: 0% 50%;
    } 
}

#titulo {
    color: rgb(251, 251, 251);
    text-align: center;
    margin-top: 75px;
    font-size: 25pt;
    font-family: 'Open Sans', sans-serif;
    padding: 0%;

}

.topicoimages {
 font-size: 15pt;
 text-align: center;
 font-family: 'Roboto', sans-serif;
 margin-top: 15px;
 padding: 0;
}

.imagescont1 {
    height: 350px;
    width: 350px;
    box-shadow: 0 0 0.4em black; /*sombra ao redor das imagens*/
}

.galery1 {
    margin-top: 100px;
    display: flex;
    flex-direction: row;
    justify-content:space-around;
    flex-wrap: wrap;
}

.galery2 {
    margin-top: 100px;
    display: flex;
    flex-direction: row;
    justify-content:space-around;
    flex-wrap: wrap;
}

#child3 {
    margin-right: 100px;
}

#child1 {
    margin-left: 100px;
    padding-bottom: 50px;

}

.imagescont2 {
    width: 540px;
    height: 315px;
    object-fit: cover;
    box-shadow: 0 0 0.4em black; /*sombra ao redor das imagens*/
    display: flex ;
    flex-wrap:wrap;
}


#child4 {
    margin-left: 80px
}

#child5 {
margin-right: 80px;
padding-bottom: 200px;
}

#btn-mobile {
    display: none;
}
/*812 -1243*/

@media only screen and (max-width: 1248px){


    #child3 {
        margin-right: 0px;
        margin-bottom: 50px;
    }
    
    #child2 {
        margin-bottom: 50px;
    }

    #child1 {
        margin-left: 0px;
        padding-bottom: 50px;
    
    }
    
    .galery2 {
        margin-top: 100px;
        display: flex;
        flex-direction: row;
        justify-content:center;
        flex-wrap: wrap;
    }
    
    #child4 {
        align-items: center;
        margin-top: 0%;
        margin-left:00px;
        margin-bottom:50px;
        padding-top: 0%;
        font-size: 10pt;
    }

    #child4 img{
        height: 350px;
        width: 100%;
    }

    #child5 {
        margin-right: 0px;
        align-items: center;
        margin-top: 0%;
        margin-left:00px;
        margin-bottom:100px;
        padding-top: 0%;
        font-size: 10pt;
    }

    #child5 img{
        height: 350px;
        width: 100%;
    }

  }


    .galery2{
        display: flex;
        margin-top: 0px;
    }
    #titulo {
        color: rgb(235, 235, 235);
        text-align: center;
        margin-top: 60px;
        font-size: 25pt;
        font-family: 'Open Sans', sans-serif;
        padding: 0%;
    
    }



@media screen and (max-width: 730px) { 
    

    li {
        font-family: 'Open Sans', sans-serif;
    }
   
    #titulo {
        margin-top: 25px;
    }
    
    /*nav responsivo*/


    #menu {
        display:block;
        position: absolute;
        width: 80%;
        top: 55px;
        left: 0px;
        background-color: rgb(2, 2, 2);
        height: 0;
        transition: 0.6s;
        z-index: 10000; /*se tiver outro elemento o menu ficará em cima*/
        visibility: hidden;
        overflow-y: hidden ;
    }

    #nav.active #menu {
        display: block;
        height: calc(100vh - 70px);
        visibility: visible;
        }


    #btn-mobile{
        display: flex;
        padding: .5rem 1rem;
        font: 1rem;
        border: none;
        background:none;
        cursor: pointer;

    }

  

        #menu li{
            border-bottom: solid 1px rgb(20, 20, 20);
            padding: 1rem;
            font-size: 15pt;
        }

        #hamburger {
            border-top: 2px solid;
            width: 20px;
            color: white;

        }

        #hamburger::after,  #hamburger::before{
            content: '';
            display: block;
            width: 20px;
            height: 2px;
            background: currentColor;
            margin-top: 5px;
            position: relative;
            transition: 0.3s;
        }

        #nav.active #hamburger {
            border-top-color: transparent;
        }

        #nav.active #hamburger::before {
            transform: rotate(135deg);
        }

        #nav.active #hamburger::after {
            transform: rotate(-135deg);
            top: -7px;
        }
}

