/* Fullscreen background and centering */
body {
  background-image: url('../gfx/GA_logo.png');
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: black;
  margin: 0;
  height: 100vh;
  font-family: Arial, sans-serif;
  color: #ebebeb;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

/* Dark overlay for readability */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

/* Main content styling */
.container {
  background: rgba(24, 24, 24, 0.1);
  padding: 30px;
  border-radius: 16px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
  max-width: 600px;
  width: 90%;
}

.image img {
  border-radius: 50%;
  margin-bottom: 20px;
}

.text {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer {
  margin-top: 20px;
}

.footer img {
  vertical-align: middle;
  margin-right: 10px;
}

.email-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007BFF;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.wa-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #00ff80;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.email-button:hover {
  background-color: #0056b3;
}

.wa-button:hover {
  background-color: #00b33c;
}