* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html,
body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.page-wrapper {
  width: 100vw;
  background-image: radial-gradient(
      circle at 20% 100%,
      rgba(184, 184, 184, 0.1) 0%,
      rgba(184, 184, 184, 0.1) 33%,
      rgba(96, 96, 96, 0.1) 33%,
      rgba(96, 96, 96, 0.1) 66%,
      rgba(7, 7, 7, 0.1) 66%,
      rgba(7, 7, 7, 0.1) 99%
    ),
    linear-gradient(40deg, #040a22, #162561, #202e64, #6f7aa6);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.imag-container {
  animation-duration: 1.5s;
  animation-delay: 0.2s;
  animation: jumping 4s linear infinite alternate;
}

.unit {
  font-size: 0.8em;
  vertical-align: super;
}

.content button:is(:hover, :focus) {
  transform: scale(0.98);
  background-color: #6f7aa6;
  color: #eaeaea;
}

h1 {
  color: white;
  text-transform: uppercase;
}

p {
  color: white;
  margin-top: 20px;
}

.unit-container {
  background-color: rgba(255, 255, 255, 0.322);
  border-radius: 5px;
  width: 100px;
  height: 70px;
  font-size: 22px;
  color: white;
  font-weight: 700;
}

.unit {
  font-size: 14px;
  font-weight: 600;
  color: white;
}

.social-media a {
  color: white;
  font-size: 20px;
  margin: 0 10px;
  transition: 0.3s;
}
.footer {
  font-size: 12px;
  color: white;
}

@media screen and (min-width: 1024px) {
  .hero {
    height: 90vh;
    width: 100%;
  }
}

@keyframes jumping {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0px);
  }
  75% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
