.hero {
  position: relative;
  background: #333333;
  color: white;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

.hero-logo {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    width: 400px;
    height: 110px;
}

.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero h2 {
    position: relative;
    z-index: 1;
    font-size: 3rem;
    margin: 0 0 10px;
    line-height: 1;
    font-weight: bold;
    text-align: center;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), #4973ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    transition: background 0.4s ease-in-out;
}

.hero p {
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 350px;
  background: #4973ff;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
  transition: 500ms;
}

.waves::before,
.waves::after {
  content: '';
  position: absolute;
  width: 300vw;
  height: 300vw;
  top: -65vw;
  left: 50%;
  transform: translate(-50%, -75%);
}

.waves::before {
  border-radius: 44%;
  background: rgba(51, 51, 51, 1);
  animation: waves 8s linear infinite;
}

.waves::after {
  border-radius: 44%;
  background: rgba(51, 51, 51, 0.5);
  animation: waves 15s linear infinite;
}

@keyframes waves {
  0% {
    transform: translate(-50%, -75%) rotate(0deg);
  }
  
  100% {
    transform: translate(-50%, -75%) rotate(360deg);
  }
}