/* main.css */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  background: url("../images/background.png") no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  text-align: center;
}

.container {
  width: 90%;
  max-width: 1200px;
  text-align: center;
  padding: 20px;
}

.logo {
  width: 100px;
  height: auto;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  top: 50px;
}

.content-box {
  background-color: #f8f4f0;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

.site-title {
  font-size: 42px;
  font-weight: 600;
  color: rgba(31, 43, 61, 1);
  margin-bottom: 20px;
  text-align: center;
}

.message {
  margin: 20px 0;
  font-size: 18px;
  color: rgba(31, 43, 61, 1);
  line-height: 1.6;
  text-align: center;
}

.links-title {
  margin-top: 20px;
  font-size: 24px;
  font-weight: bold;
  color: rgba(48, 62, 86, 1);
  text-align: center;
}

.links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
}

.button {
  padding: 15px 30px;
  text-decoration: none;
  color: #fff;
  background-color: rgba(30, 41, 59, 0.88);
  border-radius: 40px;
  font-size: 18px;
  font-weight: 600;
  transition: background-color 0.3s, transform 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.button:hover {
  background-color: rgba(30, 41, 59, 1);
  transform: scale(1.05);
}

.button.myzenyx {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.v4_3 {
  width: 350px;
  height: 350px;
  background: rgba(242, 238, 238, 1);
  border-radius: 50%;
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: fadeIn 1s ease-in-out;
}

.circle {
  width: 150px;
  height: 150px;
  background: rgba(242, 238, 238, 1);
  border-radius: 50%;
  position: absolute;
  top: -75px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo {
      width: 150px;
  }

  .content-box {
      padding: 30px;
  }

  .site-title {
      font-size: 32px;
  }

  .message {
      font-size: 16px;
  }

  .links-title {
      font-size: 20px;
  }

  .button {
      font-size: 16px;
      padding: 10px 20px;
  }
}
