@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Quicksand:wght@300;400;500;600;700&display=swap');
/*
    colors
   dark -  #437E81
   light - #7ACFD3
   grey - #575758
   white - #F0F0F1
*/
* {
    box-sizing: border-box;
  }
  header{
    background-color: #F0F0F1;
    display: flex;
    justify-content: space-between;
  }

  nav ul{
    display: flex;
    justify-content:space-evenly;
    list-style: none;
  }
  nav li{
    padding: 8px 5px;
    font-size: 18px;
  }

  .nav-left{
    width: 20%;
    padding-top: 1rem;
    align-items:baseline;
    justify-content: space-evenly;
    display: flex;
}
  .logo{
    width: 60%;
    text-align: center;
}
  .logo img{
    width: 160px;
    height: 80px;
  }
  .nav-right{
    padding-top: 1rem;
    align-items:baseline;
    justify-content: space-evenly;
    display: flex;
    gap: 2;
    width: 20%;
}
.logout a{
  font-weight: 600;
  text-decoration: none;
    color: #437E81;
}
.logout a:hover{
  color: #7ACFD3;
}
  .nav-left img,
  .nav-right img{
  width: 30px;
  height: 30px;
  margin: 8%;
}

 
  nav a{
      text-decoration: none;
      font-weight: 700;
      color: #437E81;
      padding:0.8rem 2rem;
  }
  nav a:hover{
      background-color:#437E81;
      color: #F0F0F1;
      border-radius: 8px;
  
  }

  /*FOOTER*/

  footer{
    text-align: center;
    background-color: #7ACFD3;
    color: #F0F0F1;
    padding: 1%;
  }

  @media only screen and (max-width: 320px){
   *{
      margin: 0;
      padding: 0;
    }
    header{
      background-color: #F0F0F1;
      display: flex;
      justify-content: space-between;
    }
  
    nav ul{
      display: flex;
      justify-content:space-evenly;
      list-style: none;
    }
    nav li{
      padding: 8px 5px;
      font-size: 18px;
    }
  
    .nav-left{
      width: 20%;
      padding-top: 1rem;
      align-items:baseline;
      justify-content: space-evenly;
      display: flex;
  }
    .logo{
      width: 60%;
      text-align: center;
  }
    .logo img{
      width: 160px;
      height: 80px;
    }
    .nav-right{
      padding-top: 1rem;
      align-items:baseline;
      justify-content: space-evenly;
      display: flex;
      gap: 2;
      width: 20%;
  }
  .logout a{
    font-weight: 600;
    text-decoration: none;
      color: #437E81;
  }
  .logout a:hover{
    color: #7ACFD3;
  }
    .nav-left img,
    .nav-right img{
    width: 30px;
    height: 30px;
    margin: 8%;
  }
  
   
    nav a{
        text-decoration: none;
        font-weight: 700;
        color: #437E81;
        padding:0.8rem 2rem;
    }
    nav a:hover{
        background-color:#437E81;
        color: #F0F0F1;
        border-radius: 8px;
    
    }
  }