body {
  opacity: 1;
  animation: fadeIn 0.5s ease-in forwards;
}

.jumbotron {
  background-color: lightslategrey;
  border-radius: 0px;
  color: white;
}

button {
  max-width: 16rem;
  width: 80%;
}

.icons, a {
  height: 45px;
  color: black;
  text-decoration: none;
}

.sticky-column {
  position: sticky;
  top: 40px; 
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradientMoveReverse {
  0% {
    background-position: 100% 50%;
  }
  50% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}


#insta {
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  background-size: 300% 300%;
  animation: gradientMove 5s ease infinite;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
}

#insta:hover {
  animation: gradientMoveReverse 5s ease infinite;
  box-shadow: 0 0 15px #feda75, 0 0 30px #fa7e1e, 0 0 45px #d62976;
  color: white;
}

#face {
  background: linear-gradient(45deg, #3b5998, #1877F2, #0d6efd, #004080, #001f3f);
  background-size: 300% 300%;
  animation: gradientMove 5s ease infinite;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
}

#face:hover {
  animation: gradientMoveReverse 5s ease infinite;
  box-shadow: 0 0 15px #3b5998, 0 0 30px #1877F2, 0 0 45px #0d6efd;
  color: white;
}

#tiktok {
  background: linear-gradient(45deg, #69C9D0, #EE1D52, #010101, #FF0050, #00F2EA);
  background-size: 300% 300%;
  animation: gradientMove 5s ease infinite;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  margin-bottom: 30px;
}

#tiktok:hover {
  animation: gradientMoveReverse 5s ease infinite;
  background-size: 300% 300%;
  box-shadow: 0 0 15px #FF0050, 0 0 30px #69C9D0, 0 0 45px #00F2EA;
  color: white;
}

.btn {
  color: white;
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }

  to {
      opacity: 1;
  }
}

@keyframes fadeInRow {
  from {
      opacity: 0;
  }

  to {
      opacity: 1;
  }
}

#left-bar {
  opacity: 0;
  animation: fadeInRow 1s ease-in forwards;
  animation-delay: 0.5s;
}

#right-bar {
  opacity: 0;
  animation: fadeInRow 1s ease-in forwards;
  animation-delay: 1s;
}

#textIn {
  opacity: 0;
  animation: fadeInRow 1s ease-in forwards;
  animation-delay: 0.2s;
}

#jumbIn {
  opacity: 0;
  animation: fadeInRow 1s ease-in forwards;
  animation-delay: 0.1s;
}

a {
  text-decoration: none;
  color: white;
}

a:hover {
  text-decoration: none;
  color: wheat;
}

#backTop {
  background: black;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
}

#backTop:hover {
  background: white;
  animation: diagonalFade 1.5s forwards;
  color: black;
  box-shadow: 0 0 25px black;
}

img {
  cursor: url('source/zcursor.cur'), auto;
}