/* Inaugaration Starts */
.inaugarationMain {
  min-height: 100vh;
  width: 100%;
  background: linear-gradient(142.02deg, #50afe9 21.92%, #0c507a 94.36%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: whitesmoke;
}

.inaugarationMain p {
  width: 450px;
  max-width: 90%;
  font-size: 28px;
  z-index: 1;
  text-align: center;
  font-weight: 500;
}

.maskInaugarate {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(68, 68, 68);
  background: radial-gradient(
    circle,
    rgb(68 68 68 / 0%) 0%,
    rgb(0 0 0 / 50%) 100%
  );
  z-index: 0;
}

.backHomeBtn {
  width: 200px;
  height: 50px;
  border: none;
  background: #50afe9;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
  border-radius: 8px;
  color: whitesmoke;
  font-size: 18px;
}

.inaugarationMain a {
  text-decoration: none;
  transition: all 0.4s ease-in-out;
  background: linear-gradient(225deg, #489ed2, #56bbf9);
  box-shadow: 1px 20px 26px 2px #499fd400, 0px 5px 20px #57bffe;
}

.inaugarationMain a:hover {
  color: whitesmoke;
  text-decoration: none;
  transform: translateY(-10px);
  border-radius: 8px;
  background: linear-gradient(225deg, #489ed2, #56bbf9);
  box-shadow: 1px 20px 26px 2px #499fd4, 0px 6px 26px #57bffe;
}

.iframe {
  display: none;
  z-index: 1;
}

.iframe-visible {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 1;
}

.iframe p,
.iframe-visible p {
  width: 450px;
  font-size: 28px;
  z-index: 1;
  text-align: center;
  font-weight: 500;
}

.iframe-visible iframe {
  width: 560px;
  height: 315px;
  max-width: 90% !important;
}

.hidden {
  display: none;
}

@media only screen and (max-width: 450px) {
  .iframe-visible p,
  .iframe p {
    font-size: 25px;
    width: 90%;
  }
  .iframe-visible iframe {
    width: 320px;
    height: 320px;
  }
}

/* Inaugaration ends */
