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

body {
    margin: 0;
    padding: 0;
    position: relative; 
    height: 100vh;
}

#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;
    text-align: center;
}

#info {
    color: rgb(48,48,117);
    font-weight: 800px;
    display: flex;
    margin: 30px 0px 30px 0px;
    padding-top: 100px;
    font-size: 35px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#linkedin {
    align-items: center;
    justify-content: center;
    display: flex;
    margin: 0px 0px 0px 0px;
    font-size: 35px;
    text-align: center;
    
}

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;
    }

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

    #linkedin {
      align-items: center;
      justify-content: center;
      display: flex;
      margin: 0px 0px 0px 0px;
      font-size: 25px;
      text-align: center;
      
  }

  #email{
    font-size: 25px;
  }
  }
  
