@import url('https://fonts.googleapis.com/css2?family=Sono&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abel&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
 
  body {
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background-color: rgb(239, 239, 239);
    display: block;
  }

/*código do cabeçalho*/
.cabeça{
    height: 100px; 
    width: 100%;
    background-color: rgb(0, 131, 0);
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
  
.text{
    padding-left: 10px;
    padding-bottom: 10px;
}

.logo{
    padding-right: 40px;
}

.cabeça img{
    width: 90px;
    
}
  
.minibeça /*Aquela linha pequena embaixo do cabeçalho*/{
    height: 4px;
    background-color: red;
    margin-bottom: 20px;
}
  
  #saede {
    color:rgb(255, 113, 24);
    font-family: 'Arial', sans-serif;
    font-size: 45px;
    text-align: left;
    position: relative;
    top:20px;
    left: 10px;
  }
  
  #sis{
    color: white;
    font-family: 'Sono', sans-serif;
    font-size: 15px;
    position: relative;
    bottom: 0px;
    left: 10px;
  }



@media screen and (max-width: 685px){
  #saede {
    color:rgb(255, 113, 24);
    font-family: 'Arial', sans-serif;
    font-size: 35px;
    text-align: left;
    position: relative;
    top:10px;
    left: 10px;
  }
  
  #sis{
    color: white;
    font-family: 'Sono', sans-serif;
    font-size: 12px;
    position: relative;
    bottom: 0px;
    left: 10px;
  }

  .cabeça img{
    width: 67px;
    
}
}
