.contact {
  position: relative;
  margin: 0px;
  padding-top: max(50px, 8vh);
  padding-bottom: max(50px, 8vh);
  padding-left: 10vw;
  background-color: rgb(221, 87, 28);
  display: grid;
  gap: 20px;
  column-gap: 30%;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.contact div {
  padding: 0px;
}

.contact-title {
  color: rgb(255, 255, 255);
  margin-bottom: 2vh;
  font-family: "Bowlby One SC", Arial;
  font-size: 2.2rem;
}

.contact-title-description {
  position: relative;
  color: rgb(255, 201, 178);
  font-size: 1.2rem;
}

.contact-title-description::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: white;
  transition: width 0.5s ease;
}

.contact-title-description:hover::after {
  width: 100%;
}

.contact-title-description:hover {
  cursor: pointer;
  color: white;
}

.contact-title-description:active {
  color: rgb(255, 201, 178);
}

.contacts {
  margin-top: 3vh;
  display: flex;
  flex-direction: column;
  gap: max(20px, 4vh);
  align-items: left;
  justify-content: center;
}

.contact-link {
  color: rgb(255, 201, 178);
  font-size: 1.1rem;
  transition: color 0.18s;
  align-items: center;
  display: flex;
  transition: color 0.25s;
}

.contact-link:hover {
  color: white;
  cursor: pointer;
}

.contact-link:active {
  color: rgb(255, 201, 178);
}

.social-media-icon {
  margin-right: 20px;
  width: 2vw;
  min-width: 30px;
}