html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: #1c1c1c;
  font-family: "Quicksand", sans-serif;
  overflow: hidden;
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

#background {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: blur(5px);
}

.main {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
}

#content {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  height: 100%;
  text-align: center;
  padding-top: 15%;
}

.title {
  color: white;
  font-size: 4rem;
  text-transform: uppercase;
}

.title span {
  cursor: pointer;
}

.title:hover {
  animation: MISSION-HOVER 1.5s infinite alternate ease;
}

@keyframes MISSION-HOVER {
  0%, 100% {
    color: white;
    letter-spacing: normal;
  }
  50% {
    color: #bffcff;
    letter-spacing: 5px;
    text-shadow: 0px 0px 30px rgba(191, 252, 255, 1);
  }
}

p {
  color: #e6dbae;
  font-size: 1.5rem;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
}

.social-links {
  margin-top: 3em;
}

.social-links .icon {
  display: inline-block;
  font-size: 2rem;
  color: #e6dbae;
  margin: 0 1rem;
  transition: all 0.3s ease-in-out;
}

.social-links .icon:hover {
  transform: scale(1.3);
  color: #ffffff;
  text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.8);
}
