/* Import Retro Fonts */
@import url('https://fonts.googleapis.com/css2?family=Shrikhand&family=Josefin+Sans:wght@400;700&display=swap');

/* Global Styles */
body {
  font-family: Arial, sans-serif;
  color: #f0ead6;
  margin: 0;
  padding: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh; /* Ensure the body takes up at least the full viewport height */
  display: flex;
  flex-direction: column;
}

/* Psychedelic Header */
.header {
  position: relative;
  text-align: center;
  padding: 40px 20px;
  background-color: rgba(0, 0, 0, 0.5); /* Add a semi-transparent background for better text readability */
  overflow: hidden;
}

/* Add the second background image using a pseudo-element */
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/ai-forbiznow/f2303361ae0dad6359ad386ae7095608800352d28f1c6db711e30dfc6e1f0f4b.png');
  background-size: contain; /* Change to 'contain' to fit the image within the header */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Prevent the image from repeating */
  opacity: 0.7; /* Adjust the opacity as needed */
  z-index: -1; /* Place it behind the text */
}

.header h1 {
  font-family: 'Shrikhand', cursive;
  font-size: 4rem;
  font-family: 'Shrikhand', cursive;
  margin-bottom: 20px;
  animation: glow 3s ease-in-out infinite alternate;
}

.header p {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Retro Text Boxes */
.content-box {
  background-color: rgba(255, 253, 208, 0.9);
  border-radius: 20px;
  padding: 20px;
  margin: 20px auto;
  max-width: 800px;
  box-shadow:
    0 0 0 8px #ff6b35,
    0 0 0 16px #f7c59f,
    0 0 0 24px #efefd0;
  color: #333;
  text-shadow: none;
.datacenter-box {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.datacenter-box img {
  max-width: 100%;
  border-radius: 10px;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-box, .datacenter-box {
  width: 800px;
}

}

/* Retro Buttons */
.back-button, .btn-primary {
  background-color: #f7c59f;
  color: #333;
  border-radius: 25px;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.back-button:hover, .btn-primary:hover {
  background-color: #f7c59f;
  box-shadow: 0 0 15px rgba(255, 107, 53, 0.7);
}

/* Footer Styling */
footer {
  background-image: linear-gradient(135deg, #ff6b35, #f7c59f, #efefd0);
  color: #333;
  text-align: center;
  padding: 20px;
  font-family: 'Shrikhand', cursive;
  margin-top: auto; /* Push the footer to the bottom */
}

footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header h1 {
    font-size: 2.5rem;
  }
  .header p {
    font-size: 1rem;
  }
}