* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.contact-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    gap: 48px;
    background-color: white;
    padding: 0 0 200px 0;
}

.contact-section > h2 {
    color: black;
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: 56px;
    font-weight: 400;
    line-height: 130%; /* 96px */
    letter-spacing: -2.8px;
    max-width: 600px;
}


.contact-links-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-links-container > a {
  display: flex;
  gap: 24px;
  padding: 16px 0;
  align-items: center;
  color: black;
  font-family: Montserrat, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 100%; /* 56px */
  text-decoration: none;
  transition: .3s;
}

.contact-links-container:hover > a {
  opacity: 0.5;
}

.contact-links-container:hover > a:hover {
  opacity: 1;
}
  
.contact-links-container > a > svg {
  width: 32px;
  height: 32px;
  stroke-width: 2.5px;
  stroke: black;
  fill: none;
}

@media only screen and (max-width: 680px) {

  .contact-section {
    padding: 0 24px;
    height: 560px;
    gap: 40px;
}

  .contact-section > h2 {
    font-size: 32px;
    letter-spacing: -1.6px;
    font-weight: 400;
}


.contact-links-container > a {
  font-size: 24px;
  gap: 12px;
}

.contact-links-container > a > svg {
  width: 24px;
  height: 24px;
}

}