/* Import a modern sans-serif font */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");

body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f0f0;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}

.container {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 750px; /* Increased width for more breathing room */
  width: 100%;
}

.logo {
  width: 150px;
  margin-top: 30px;
  margin-bottom: 30px;
}

h1 {
  font-size: 2em;
  margin-bottom: 10px;
  color: #333;
}

p {
  font-size: 1em;
  margin-top: 30px;
  margin-bottom: 30px;
  color: #666;
}

.cta-button {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 30px;
  margin-bottom: 30px;
  background-color: #0073e6;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #005bb5;
}

.social-icons {
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.social-icons a {
  text-decoration: none;
  font-size: 1.5em;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
}

.social-icons a[href*="facebook"] {
  color: #1877f2;
}

.social-icons a[href*="twitter"] {
  color: #1da1f2;
}

.social-icons a[href*="instagram"] {
  color: #c13584;
}

.social-icons a:hover {
  transform: scale(1.2);
}

.social-icons img.social-icon {
  width: 35px;
  height: 35px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.social-icons img.social-icon:hover {
  transform: scale(1.2);
}

.music {
  margin-top: 20px;
}

audio {
  width: 100%;
  max-width: 400px;
  margin-top: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Media query for tablets */
@media (max-width: 768px) {
  .container {
    padding: 30px;
    max-width: 600px;
  }

  .logo {
    width: 120px;
  }

  h1 {
    font-size: 1.75em;
  }

  p {
    font-size: 0.9em;
  }
}

/* Media query for mobile devices */
@media (max-width: 480px) {
  .container {
    padding: 20px;
    max-width: 320px;
  }

  .logo {
    width: 90px;
  }

  h1 {
    font-size: 1.5em;
  }

  p {
    font-size: 0.8em;
  }

  .social-icons {
    gap: 10px;
  }

  .social-icons img.social-icon {
    width: 30px;
    height: 30px;
  }
}
