*{
      padding: 0;
      margin: 0;
      box-sizing: border-box;
      font-family: 'Arial', sans-serif;
  }
  .header-top {
       background-color: #ff4500;
        color: #fff;
        text-align: center;
        padding: 5px;
    }
  .header-top h1{
      display: flex;
      justify-content: center;
      color: white;
      font-size: 18px;
      margin: 3px;
  }
  .header-top h1 a{
      text-decoration: none;
      color: #fff;
  }
  #header{
      width: 100%;
  }
  .nav{
      display: flex;
      align-items: center;
      justify-content: space-around;
      flex-wrap: wrap;
      background-color: white;
      padding: 10px;
  }
  #sidemenu {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      padding: 20px;
      background-color: #fff;
      color: black;
      width: 580px;
      height: 50px;
  }
  #sidemenu a {
      margin-left: 17px;
      color: black;
      text-decoration: none;
      font-size: 17px;
      position: relative;
      font-family: Arial;
      margin-top: 10px;
  }
    .logo {
            background-color: white;
            height: 70px;
            width: 170px;
            padding: 10px;
            display: inline-block;
            
        }
        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            background-color: white;
        }
  #sidemenu a::after{
      content: '';
      width: 0;
      height: 3px;
      background: rgb(180, 14, 14);
      position: absolute;
      left: 0;
      bottom: -6px;
      transition: 0.5s;
  }
  #sidemenu a:hover::after{
      width: 100%;
  }
  .nav .icon {
      display: none;
      border: none;
      cursor: pointer;
      background-color: white;
  }
  footer{
    background-color: black;
    color: white;
    padding: 5px;
    display: flex;
    justify-content: center;
   
}
 
  
  @media only screen and (max-width: 600px) {
      .nav .icon{
      display: block;
      font-size: 27px;
     }
     .nav{
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        background-color: white;
        padding: 10px;
  }
    #sidemenu {
      display: block;
      display: flex;
      justify-content: flex-start;
      flex-direction: column;
      position: fixed;
      top: 0;
      right: -200px;
      width: 200px;
      height: auto;
      margin-top: 40px;
      background-color: white;
      padding-top: 30px;
      transition: right 0.3s ease;
       z-index: 2;
    }
    #sidemenu a{
      margin-top: 20px;
      font-size: 25px;
    }
    #sidemenu .icon{
      display: flex;
      margin-left: 10px;
      color: red;
    }
    footer{
        margin-bottom: 1px;
    }
    
  }