main {
  display: flex;
  color: white;
  flex-direction: column;
  justify-content: center;
  height: 86vh;
  padding: 0 15%;
}

.contact-section h1 {
  font-size: 70px;
  font-weight: 400;
  margin-top: 180px;
  margin-bottom: 90px;
}

.email {
  font-size: 26px;
  margin-bottom: 140px;
  text-decoration: underline;
  color: white;
}

.email:hover {
  text-decoration: none;
  color: white;
}

.follow-section h2 {
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 60px;
  color: white;
}

.white {
  color: white;
}

.white:hover {
  color: white;
  text-decoration: none;
}

.follow-section a {
  font-size: 24px;
  margin-top: 25px;
  text-decoration: none;
  color: white;
}

.follow {
  margin-top: 40px;
  max-width: 100px;
}

.follow:hover {
  text-decoration: underline;
}

/* Social Icons */
.icone {
  display: flex;
  gap: 60px;
  margin-top: 30px;
  margin-bottom: 0;
  align-items: center;
  justify-content: end;
}

.icone a {
  display: block;
  transition: none;
  padding: 10px;
}

.icone img {
  width: 30px;
  height: 30px;
  display: block;
  transition: all 0.2s ease;
}

.icone a:hover{
  background-color: white;
  border-radius: 6px;
}

/* Mobile Responsive */
@media (max-width: 900px) {
  main {
    padding: 0 8%;
    height: auto;
    min-height: 86vh;
  }
  
  .contact-section h1 {
    font-size: 55px;
    margin-top: 100px;
    margin-bottom: 90px;
  }
  
  .email {
    font-size: 20px;
    margin-bottom: 110px;
  }
  
 .follow-section h2 {
    font-size: 42px;
    margin-bottom: 50px;
  }
  
  .follow-section a {
    font-size: 20px;
  }
  
  .icone {
    gap: 40px;
    margin-top: 60px;
    justify-content: start;
    flex-wrap: wrap;
  }
  
  .icone img {
    width: 30px;
    height: 30px;
  }
  
}
