@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&family=Roboto:wght@500&family=Unbounded:wght@500&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 200;
  color: #333;
  text-align: center;
}

.container {
  width: 100%;
  height: auto;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

main {
  width: 100%;
  height: auto;
  padding: 15px;
}

.expired {
  background-color: #FF0000;
  font-weight: 600;
  color: #fff;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.message {
  font-size: 24px;
  color: #FF0000;
  margin-bottom: 20px;
  text-shadow: 1px 1px 1px #333;
  background-color: rgba(255, 255, 255, 0.616);
  padding: 10px;
  border-radius: 20px;
}

.ok-button {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  cursor: pointer;
}

.social-media {
  margin-top: 50px;
}
.social-media i {
  color: #fff;
  margin: 10px;
}
.social-media i:hover {
  color: #00B4DB;
}

.social-icon {
  font-size: 24px;
  margin: 0 10px;
  color: #333;
}

.copyright {
  margin-top: 20px;
  font-size: 12px;
}
.copyright a {
  text-decoration: none;
  color: #333;
  font-weight: 400;
}
.copyright a:hover {
  color: #4CAF50;
}
.copyright a:visited {
  color: red;
}

.gradient {
  width: 100%;
  height: 100vh;
  background: linear-gradient(-45deg, #FFC600, #FF6B6B, #00B4DB, #0083B0);
  background-size: 300% 300%;
  -webkit-animation: gradientAnimation 10s ease infinite;
          animation: gradientAnimation 10s ease infinite;
}

@-webkit-keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.popup {
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  max-width: 300px;
  margin: 20px auto;
}
.popup p {
  text-align: left;
  font-size: 12px;
}
.popup ul {
  margin-top: 20px;
}
.popup ul li {
  font-weight: 600;
  font-size: 12px;
  list-style: square;
  text-align: left;
}

button {
  padding: 10px 20px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

.content {
  text-align: center;
  padding: 100px 0;
}
.content h1 {
  font-size: 36px;
  color: #333;
}
.content p {
  font-size: 18px;
  color: #666;
}
.content .social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.content .social-icons a {
  margin: 0 10px;
}
.content .footer {
  text-align: center;
  background-color: #333;
  color: #fff;
  padding: 10px 0;
}

@media only screen and (max-width: 600px) {
  body {
    text-align: left !important;
  }
  .expired, .social-media, .copyright {
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */