* {
  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);
}

#info {
  padding-top: 30px;
  text-align: left;
}

.stuff {
  display: flex;
  justify-content: center;
}

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

.imagecontainer {
  margin: 30px;
}

img {
  width: 80vw;
  max-width: 450px;
  border: rgb(48, 48, 117) solid 2px;
  border-radius: 5px;
}

#bio {
  color: rgb(48, 48, 117);
  padding: 20px;
  margin-left: 100px;
  margin-right: 100px;
  font-size: 25px;
  width: 40vw;
  text-align: center;
  justify-content: center;
  margin-bottom: 25px;
}

#skillstitle {
  color: white;
  background-color: rgb(48, 48, 117);
  text-align: left;
}

#skillsbasics {
  color: white;
  column-count: 3;
  font-size: 18px;
  background-color: rgb(48, 48, 117);
  margin: 10px;
  margin-bottom: 20px;
  max-width: 80%;
  
}

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

li {
    background-color: rgb(48, 48, 117);
    justify-content: space-around;
}

#skills-container {
  background-color: rgb(48, 48, 117);
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;
}

#skills-container:hover {
  transform: scale(1.05);
}

@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, 0.5);
    font-size: 35px;
    justify-content: flex;
  }

  .dropdown-content a:hover {
    /* background-color: rgb(68, 68, 117); */
    color: gray;
    transform: scale(1.1);
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }

  .stuff {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }

  #bio {
    font-size: large;
    width: 90vw;
    text-align: center;
  }
  .imagecontainer {
    margin: 0px;
  }
  #info {
    padding-top: 0px;
  }

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

  #skillstitle {
    margin-left: 0px;
    text-align: center;
    font-size: x-large;
  }

  #skillsbasics {
    column-count: 1;
    font-size: 16px;
    max-width: 90vw;
    padding-left: 80px;
    margin-left: 50px;
    margin-top: 0px;
  }
}
