* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@import url('https://fonts.googleapis.com/css2?family=Circular+Std:wght@700&display=swap');      
body {
    font-family: 'Circular Std', sans-serif;
}
.container {
    display: grid;
    grid-template-columns: 1fr ; 
    grid-template-rows: 0fr 0fr 0fr;
    grid-template-areas:  
        "nav"
        "conteudo"
        "footer";
}

#nav {
    grid-area: nav;
    justify-content: space-between;
    display: flex;
    opacity: 75%;
    height: 20px; 
    width: 100%;  
    margin-bottom: 20px;
}

#nav img {
    width: 140px;
    margin-left: 20px;
    margin-top: 5px;
    z-index: 3;
}

#nav img:hover {
    transform: scale(1.05); 
    transition: transform 0.2s; 
}

#nav #redes .facebook-button {
    padding: 12px 40px;
    border: none;
    background-image: url('/stream/imagens/facebook.png'); 
    background-repeat: no-repeat;
    background-color: rgb(255, 255, 255);
    background-size: 25px; 
    padding-left: 3px; 
}
.facebook-button:hover{
    transform: scale(1.05); 
    transition: transform 0.2s; 
}  

#nav #redes .youtube-button {          
    padding: 10px 40px;
    border: none;
    background-color: rgb(255, 255, 255);
    background-image: url('/stream/imagens/youtube.png');
    background-repeat: no-repeat;
    background-size: 25px;
    padding-left: 3px;
} 
.youtube-button:hover{
    transform: scale(1.05); 
    transition: transform 0.2s; 
}  

#conteudo {
    grid-area: conteudo;
    display: flex;
    margin-top: 50px;
    flex-direction: column;
    margin-left: 15px;
    margin-right: 15px;
}

.footer #footer-container{
    grid-area: footer;
    bottom: 0;
    color: #fff;
    text-align: center;
    padding: 10px;
}

/* texto de apresentação*/
p {
    font-family: 'Circular Std', sans-serif;
    display: flex;
    color: #585858;
    font-size: 17px;
    font-style: none;
    text-decoration: none;
    margin-bottom: 15px;
}   

/*descrição card img*/
h1 {
    font-family: 'Circular Std', sans-serif;
    color: #585858;
    font-size: 17px;

}

h2 {
    font-family: 'Circular Std', sans-serif;
    display: flex;
    color: #ffffff;
    font-size: 12px;
    text-decoration: none;
} 

/* Media Query para ajustar o layout em dispositivos pequenos */


@media screen and (max-width: 1000px) {
    
.container {
    display: flex;
    flex-direction: column;
    max-width: 100%; 
}
#nav{
    height: 35px; 
}
    
#nav img   {
        width: 100px;
}


#conteudo{
    display: flex;
    flex-direction: column;
    margin-left: 20px;
    margin-right: 20px;
    flex-wrap: nowrap;
}

h1{
    font-size: 20px;
    margin-bottom: 10px;
}

h2 {
    font-weight: 1;
    margin: 0rem;
    font-size: 10px;
    color: rgb(0, 0, 0);
}

#texto1 {
    display: flex;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

#texto1 p{
    display: flex;
    text-align: start;
}

}