html {
  background-color: black;
}

body {
  margin: 0;
}
@font-face {
  font-family: "MarketFreshInlineBold";
  src: url("fonts/MarketFreshInlineBold.ttf");
}

@font-face {
  font-family: "Signatour";
  src: url("fonts/signatour.ttf");
}

.landingBackground {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-image: url("images/space_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.contentContainer {
  background: linear-gradient(
    0deg,
    rgba(2, 2, 2, 1) 0%,
    rgba(2, 2, 2, 0.01) 100%
  );
  display: flex;
  align-self: stretch;
  justify-content: center;
  flex-direction: column;
}
.imgContainer {
  padding: 8vw 1vw 8vw 1vw;
  max-width: 1000px;
  max-height: 40%;
  justify-content: center;
  align-items: center;
  display: flex;
  transform: scale(1);
  animation: pulse 3s infinite;
}

.contentRow {
  text-align: center;
  margin: 0 0 2vh 0;
}

.iconRow {
  margin: 0 2vh 2vh 2vh;
  min-height: 60px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.socialIcon {
  cursor: pointer;
  margin: 2vh 2vh;
  font-size: 40px;

  /* Chrome, Safari, Opera */
  -webkit-animation: rainbow 12s infinite;

  /* Internet Explorer */
  -ms-animation: rainbow 12s infinite;

  /* Standar Syntax */
  animation: rainbow 12s infinite;
}

.socialIcon:hover {
  /* animation-play-state: paused; */
  color: white;
}

/* Chrome, Safari, Opera */
@-webkit-keyframes rainbow {
  0% {
    color: #daaed7;
    opacity: 0.9;
  }
  50% {
    color: #c65fc0;
    opacity: 1;
  }
  100% {
    color: #daaed7;
    opacity: 0.9;
  }
}

/* Internet Explorer */
@-ms-keyframes rainbow {
  0% {
    color: #daaed7;
    opacity: 0.9;
  }
  50% {
    color: #c65fc0;
    opacity: 1;
  }
  100% {
    color: #daaed7;
    opacity: 0.9;
  }
}

/* Standar Syntax */
@keyframes rainbow {
  0% {
    color: #daaed7;
    opacity: 0.9;
  }
  50% {
    color: #c65fc0;
    opacity: 1;
  }
  100% {
    color: #daaed7;
    opacity: 0.9;
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.99) translateY(6px);
    opacity: 0.75;
  }

  60% {
    transform: scale(1) translateY(0px);
    opacity: 1;
  }

  100% {
    transform: scale(0.99) translateY(6px);
    opacity: 0.75;
  }
}

.subTitle {
  font-family: "Archivo Narrow";
  font-size: 8vh;
  color: white;
  font-weight: bold;
  text-shadow: 0 0.55vw 0 white;
}

@media only screen and (max-width: 600px) {
  .imgContainer {
    margin: 20vw 1vw 8vw 1vw;
  }

  .subTitle {
    font-size: 6vh;
    line-height: 10vh;
    text-shadow: 0 1.25vw 0 white;
  }

  .iconRow {
    justify-content: center;
  }
}
