* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Montserrat, sans-serif;
}

body {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f4f6f8;
}

.redirect-container {
  text-align: center;
  border-radius: 25px;
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow: auto;
  padding: 40px;
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0rem 0.75rem 1.5rem -0.25rem #919eab1f,
    0rem 0rem 0.125rem 0rem #919eab33;
}

.logo-image {
  display: block;
  margin: 0 auto 0 auto;
  width: 100%;
  max-width: 190px;
  z-index: 999;
}

.redirect-image {
  max-width: 100%;
  width: 650px;
  max-height: clamp(200px, 40vh, 500px);
  z-index: 0;
}

.redirect-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #454f5b;
}

.redirect-description {
  font-size: 1.2rem;
  color: #454f5b;
  line-height: 1.8;
}

#link {
  color: #2990d4;
}

@media (max-width: 768px) {
  .logo-image {
    max-width: 170px;
    margin-bottom: 0;
  }

  .redirect-title {
    font-size: 2rem;
  }

  .redirect-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .logo-image {
    max-width: 180px;
    margin-bottom: 0;
  }

  .redirect-title {
    font-size: 1.6rem;
  }

  .redirect-description {
    font-size: 0.9rem;
  }
}
