.contact-container{
  position: relative;
  overflow: hidden;

  background: #000;
  width: 100%;
  height: 100vh;
}

/* Title */
.contact-heading{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: min(0.5rem, 4vw);
}
.contact-heading h1{
  color: #fff;
  font-size: min(8rem, 20vw);
}

/* Selector */
.contact-selector ul{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: min(3rem, 8vw);
}
.contact-selector ul li a{
  color: #fff;
  font-size: min(2rem, 6vw);
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
}
.contact-selector ul li a:hover{
  color: #000;
  background: #fff;
  border: 1px solid #fff;
  padding: 0 0.5rem;
}

/* Social Media */
.social-box{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8vw;
}
.social-icon{
  font-size: 10vw;
  color: #fff;
}
h3{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8vw;
  margin-bottom: 1vw;
  color: #fff;
  font-size: 2vw;
}