#top {
  width: 100%;

  display: flex;
  flex-direction: column;

  padding-top: 30px;
  padding-bottom: 30px;

  margin-bottom: 30px;

  text-align: center;
  align-items: center;

  color: white;
}

#camden {
  margin-bottom: 10px;
}

#name {
  width: 50%;
  font-size: 40px;
  margin-bottom: 10px;
}

#about {
  width: 80%;
  font-size: 22px;
  margin-bottom: 20px;
}

#socials * {
  width: 100%;
  max-width: 60px;

  display: flex;
}

#socials {
  width: 50%;
  max-width: 600px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 20px;
}

#linkedin, #github {
  width: 95%
}

#buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  margin-bottom: 60px;
}

#buttons a {
  text-decoration: none;
  color: inherit;
}

#buttons div {
  width: 300px;
  height: 80px;

  border-radius: 20px;
  border-style: solid;
  border-color: black;
  border-width: 4px;

  display: flex;
  font-size: 30px;
  font-weight: bold;

  align-items: center;
  justify-content: center;
}

#button1 {
  background-color: #FDFD96;
}

#button2 {
  background-color: #FFB347;
}

#button3 {
  background-color: #43C95F;
}

@media (max-width: 1025px) {
  #buttons {
    width: 100%;
    max-width: 400px;
    flex-direction: column;
  }
}

@media (max-width: 415px) {
  .shadow {
    filter: drop-shadow(4px 4px 2px rgba(0, 0, 0, 0.5));
  }
}

#socials * {
  transition: all .1s ease-in-out;
}

#socials *:hover {
  transform: scale(1.2);
}

#buttons div {
  transition: all .1s ease-in-out;
}

#buttons div:hover {
  transform: scale(1.1);
}
