
body {
    background-image: url('Contact.png');
    background-size: cover;
    background-position: center 2px;
    font-family: 'Segoe UI', sans-serif;
    color: white;
    margin: 0;
    padding: 0;
    text-align: center;
    background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
/* General layout */
.contact-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 400px;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 20px 25px;
  border-radius: 12px;
  color: #fff;
  font-family: "Segoe UI", sans-serif;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  z-index: 10;
}

/* Heading */
.contact-container h2 {
  margin-bottom: 18px;
  font-size: 1.8rem;
  color: #ffe600;
}

/* Text content */
.contact-container p {
  margin: 10px 0;
  font-size: 1.05rem;
  line-height: 1.5;
  word-break: break-word;
}

/* Email and Instagram links */
.contact-container a {
  color: #4ac3ff;
  text-decoration: none;
}

.contact-container a:hover {
  text-decoration: underline;
}

/* Back button */
.contact-container button {
  margin-top: 18px;
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #ffe600;
  color: #000;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-container button:hover {
  background-color: #ffcc00;
}

/* Responsive for small screens */
@media screen and (max-width: 480px) {
  .contact-container {
    width: 95%;
    padding: 18px;
    font-size: 0.95rem;
  }

  .contact-container h2 {
    font-size: 1.5rem;
  }

  .contact-container p {
    font-size: 1rem;
  }
}
