:root {
  font-family: "Inter", sans-serif;
}
@supports (font-variation-settings: normal) {
  :root {
    font-family: "Inter var", sans-serif;
  }
}

:root {
  --text: #001122;
}

/* Set global text color */
* {
  color: var(--text);
}

body {
  margin: 0;
  background: linear-gradient(90deg, #e5effb 0%, #f0f8ff 100%);
}

#main-content {
  display: flex;
  flex-direction: row;
  align-items: center; /* Center horizontally */
  justify-content: center; /* Center vertically */
  height: 95vh;
}

h1 {
  font-size: 60px;
  /* Purple gradient */
  background: linear-gradient(89deg, #7759e5 -0.72%, #faa5ff 90.47%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 40px;
}

h1,
h2 {
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 17px;
}

h3 {
  font-size: 20px;
  font-weight: 450;
  color: #999999;
  margin-top: 0;
  margin-bottom: 17px;
}

#placeholder-image {
  max-width: 100%; /* Ensure it doesn't exceed its container's width */
  height: auto; /* Maintain aspect ratio */
  width: 400px; /* Set the desired width */
  margin: 65px;
}

#coming-soon-image {
  max-width: 100%; /* Ensure it doesn't exceed its container's width */
  height: auto; /* Maintain aspect ratio */
  width: 204px;
  margin-top: 17px;
  box-shadow: 0 10px 20px rgba(159, 185, 212, 0.4);
}

#footer-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px; /* Reduced padding to prevent scrolling */
  flex-wrap: wrap; /* Ensure it wraps on small screens */
  width: 100%; /* Ensure it spans the full width */
  box-sizing: border-box; /* Keep padding included in the width calculation */
}

#footer-spacer {
  flex-grow: 1;
  min-width: 50px;
}

#instagram,
#twitter {
  margin-right: 10px;
}

#copyright-info {
  margin-left: 10px;
}

#contact {
  margin-right: 10px;
}

.footer-element {
  color: #666666;
}

/* Remove underlines under hyperlinks */
a {
  text-decoration: none;
}

/* Add a media query for screens with a max-width of 768px (typical mobile width) */
@media (max-width: 768px) {
  body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
  }
  /* Center-align text and elements vertically */
  #main-content {
    flex-direction: column;
    text-align: center;
  }

  /* Adjust image size and margins for smaller screens */
  #placeholder-image {
    width: 80%; /* Adjust width */
    margin: 20px auto; /* Center the image */
  }

  /* Adjust margins and spacing for smaller screens */
  h1 {
    font-size: 40px; /* Decrease font size */
    margin-bottom: 18px;
  }

  h2 {
    font-size: 20px; /* Decrease font size */
    margin-bottom: 18px;
  }

  h3 {
    font-size: 16px; /* Decrease font size */
    margin-bottom: 18px;
  }

  #coming-soon-image {
    width: 60%; /* Adjust width */
  }

  #footer-container {
    width: 100%; /* Make it span the full width */
    text-align: center; /* Center-align text */
    display: flex;
    flex-direction: column;
  }

  #footer-spacer {
    width: 0;
    visibility: hidden;
  }

  /* Make the socials appear before the copyright info on mobile */
  #socials-and-contact {
    order: 1;
    margin-bottom: 25px;
  }

  #copyright-info {
    text-align: center;
    margin: 0;
    order: 2;
    margin-bottom: 25px;
  }

  #instagram {
    margin: 0 10px;
  }

  #twitter,
  #contact {
    margin-right: 10px;
  }
}

.policy-container {
  max-width: 800px; /* Limits the width for better readability */
  margin: 30px auto; /* Centers the content and adds space around it */
  padding: 20px; /* Adds space inside the container */
  background-color: #f8fbff; /* Light blue-gray for a softer look */
  border-radius: 10px; /* Optional: Rounds the corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Optional: Adds a soft shadow */
}
