@import url("https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
section .wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: #4973ff;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
  transition: 0.5s;
}
section .wave span {
  content: "";
  position: absolute;
  width: 325vh;
  height: 325vh;
  top: 0;
  left: 50%;
  transform: translate(-50%, -75%);
  background: #000;
}
.content {
  position: relative;
  z-index: 1;
  font-size: 4em;
  letter-spacing: 2px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
section .wave span:nth-child(1) {
  border-radius: 45%;
  background: rgba(20, 20, 20, 1);
  animation: animate 5s linear infinite;
}

section .wave span:nth-child(2) {
  border-radius: 40%;
  background: rgba(20, 20, 20, 0.5);
  animation: animate 10s linear infinite;
}
section .wave span:nth-child(3) {
  border-radius: 42.5%;
  background: rgba(20, 20, 20, 0.5);
  animation: animate 15s linear infinite;
}


.homePageLogo{
    width: 40%;
    animation: glow 5s ease-in-out infinite alternate;
}

.welcomeText{
    font-size: 4vw;
}

.welcome{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.welcomeBtns{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2%;
}

.welcomeBtn{
    font-size: 2vw;
    font-weight: 700;
    color: white;
    background-color: rgb(26, 26, 26);
    border: none;
    padding: 3%;
    white-space: nowrap;
}

.welcomeBtn:hover{
    background-color: rgb(255, 255, 255);
    color: black;
    cursor: pointer;
    transition: 0.5s ease-in-out;
}

@keyframes animate {
  0% {
    transform: translate(-50%, -75%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -75%) rotate(360deg);
  }
}

@keyframes glow {
    0% {
        filter: drop-shadow(0 0 5rem rgb(0, 119, 255));
    }

    100% {
        filter: drop-shadow(0 0 5rem rgb(255, 72, 0));
    }
}
