@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");

:root {
  --primary-color: #ffffff;
  --accent-color: #007bff;
  --background-gradient-start: #2a725b;
  --background-gradient-mid1: #101843;
  /* --background-gradient-mid2: #2a725b; */
  --background-gradient-end: #287896;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--primary-color);
  line-height: 1.6;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

.background-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(
    -45deg,
    var(--background-gradient-start),
    var(--background-gradient-mid1),
    /* var(--background-gradient-mid2), */
    var(--background-gradient-end)
  );
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

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

.container {
  max-width: 700px;
  width: 90%;
  padding: 40px 20px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
  max-width: 150px;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.subtitle {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

.contact-info {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item i {
  font-size: 1.2rem;
  width: 30px;
  margin-right: 15px;
  color: var(--accent-color);
}

.contact-item a,
.contact-item span {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #d4d4d4;
}

.copyright {
  margin-top: 30px;
  font-size: 0.9rem;
  opacity: 0.7;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  .contact-item {
    font-size: 1rem;
  }
}
