* {
    font-family: 'EB Garamond', serif;
    font-weight: bold;
    background-color: antiquewhite;
}

#title {
    color: rgb(48, 48, 117);
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
}

#menubar {
    color: rgb(48, 48, 117);
    display: flex;
    justify-content: space-around;
    margin: 20px;
    font-size: 22px;
    background-color: rgb(48, 48, 117);
  }
  a:hover {
    color: gray;
    transform: scale(1.1);
  }

a {
    border: rgb(48,48,117) solid 8px;
    background-color: rgb(48,48,117);
    margin: 8px;
    color: white;
    font-weight: 100;
    border-radius: 5px;
    text-decoration: none;
}

body {
    color: rgb(48,48,117);
}

#list {
    padding: 40px;
    font-size: 22px;
}

footer{
    color: rgb(48,48,117);
    position: fixed;
    margin-top: 30px;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}


@media only screen and (min-width: 1024px) {
    .dropdown{
        display: none;
    }
    }
    
    @media only screen and (max-width: 1024px) {
        #menubar {
          display: none;
        }
      
        .dropdown {
          position: relative;
        }
      
        .dropdown-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            cursor: pointer;
            background-color: rgb(48, 48, 117);
            color: white;
            font-weight: 100;
            border-radius: 5px;
            font-size: 45px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
          }
      
        .dropdown-content {
          display: none;
          position: absolute;
          top: 0;
          right: 0;
          z-index: 1;
          background-color: rgba(255, 255, 255, 0);;
        }
      
        .dropdown-content a {
          display: block;
          padding: 8px;
          text-decoration: none;
          color: white;
          font-weight: 100;
          border-radius: 5px;
          text-decoration: none;
          box-shadow: 0 8px 16px rgba(0,0,0,.5);
          font-size: 35px;
          justify-content: flex;
          
        
        }
      
        .dropdown:hover .dropdown-content {
          display: block;
        }

        #title{
          font-size: x-large;
        }

        #list {
          padding: 0px;
          font-size: 14px;
          width: 90vw;
      }
      }
      