/* General Styles */
body,
html {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  background: url("nyc-background.jpg") no-repeat center center fixed;
  background-size: cover; /* Ensures the image covers the entire background */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: #333;
}

.container {
  text-align: center;
  padding: 20px;
  border: 2px solid rgba(255, 255, 255, 0.8); /* Transparent white border */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  background: rgba(
    255,
    255,
    255,
    0.9
  ); /* Slight white background for readability */
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  margin-bottom: 20px;
}

/* Header */
.logo {
  width: 150px;
  margin-bottom: 20px;
}

/* Title */
.animated-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
  color: #333;
}

.animated-title .highlight {
  color: #e33e32;
  animation: pulse 2s infinite;
}

/* Link */
.referral-link {
  display: inline-block;
  font-size: 20px;
  color: #0056b3;
  font-weight: 700;
  text-decoration: none;
  margin: 15px 0;
  border: 2px solid #0056b3;
  padding: 12px 25px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.referral-link:hover {
  background-color: #0056b3;
  color: white;
  transform: scale(1.05);
}

/* Notes */
.note,
.additional-note {
  font-size: 16px;
  color: #666;
  margin-top: 10px;
}

/* Details */
.details {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  text-align: left;
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
