/* Global Styles */
body {
  background-color: black;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: Calibri, Arial, sans-serif;
  height: 100vh;
  color: white;
}

a {
  color: white;
  text-decoration: none;
}

/* Index Page Styles */
#container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

#logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px; /* Add some spacing at the top */
}

#logo {
  max-width: 50%;
  max-height: 50vh;
  width: auto;
  height: auto;
}

#text-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

#title {
  font-size: 24px;
  margin-bottom: 20px;
}

#description {
  font-size: 16px;
  margin-bottom: 40px;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #555;
  color: white;
  font-size: 18px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  text-align: center;
  max-width: 200px;
  margin-top: 20px;
}

.button-container {
  display: flex;
  justify-content: center;
}

.button:hover {
  background-color: #333;
}

#social-media-tiles {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

#social-media-tiles a {
  margin: 0 5px;
}

#social-media-tiles img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

/* Gallery Page Styles */

#gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 4px; /* Adjust the gap as needed */
  justify-items: center;
  align-items: center;
  height: 100vh;
  overflow: auto;
  margin: 0; /* Remove any margins */
  padding: 0; /* Remove any padding */
}

.image {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover; /* Preserve aspect ratio */
}

/* Secret Page Styles */
#links-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 1vh;
}

.alternate-link {
  margin-bottom: 20px;
  font-size: 18px;
  text-decoration: none;
  color: white;
}

/* Social Media Links */
#social-media-container {
  display: flex;
  justify-content: center;
  margin: 20px;
}

#social-media-container a {
  display: inline-block;
  margin: 0 10px;
  max-width: 30px;
  max-height: 30px;
}

#social-media-container img {
  max-width: 100%;
  max-height: 100%;
}
