* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

h2 {
    text-align: center;
    padding-top: 20px;
}

/* Hero Section */

#hero {
  position: relative;
  height: 100vh;
  background-image: url(../images/hero-stars.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
}

#hero::before {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, .4);
}

.hero-container {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 10vh;
  animation: fadeIn 5s;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}



.img-hero {
  height: 55vh;
  border-radius: 20px;
}

.text-hero {
  color: rgb(221, 217, 217);
  width: 20vw;
  font-size: xx-large;
  padding-left: 40px;
}

.cta-hero {
  color: white;
  background-color: blue;
  border-radius: 5px;
  padding: 10px;
}


/* Platforms Section */

.platforms-header {
  position: relative;
  color: white;
  display: flex;
  justify-content: center;
  padding-top: 20vh;
  font-size:xx-large
}

.platforms-background {
  position: relative;
  height: 100vh;
  background-image: url(../images/platforms-background.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
}

.platforms-background::before {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, .6);
}

/* .platforms {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-top: 15vh;
} */

.cms-1 {
  height: 300px;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: moveToCenter-1 2s forwards;
}

@keyframes moveToCenter-1 {
  0% {
      transform: translate(-200%, -50%);
      opacity: 0;
  }
  50% {
      transform: translate(-25%, -50%);
      opacity: 1;
  }
  100% {
      transform: translate(25%, -50%);
      opacity: 1;
  }
}

.cms-2 {
  height: 300px;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: moveToCenter-2 2s forwards;
}

@keyframes moveToCenter-2 {
  0% {
      transform: translate(-200%, -50%);
      opacity: 0;
  }
  50% {
      transform: translate(-75%, -50%);
      opacity: 1;
  }
  100% {
      transform: translate(-125%, -50%);
      opacity: 1;
  }
}


