/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Times New Roman', Arial, sans-serif;
  background-color: #000;
  overflow: hidden; /* Prevent scrollbars for the body itself */
}

.styles .image-container img {
   transform: scale(0.5);
  max-width: 100%; /* Ensure the image scales with the container width */
  max-height: 100%; /* Ensure the image scales with the container height */
  object-fit: contain; /* Scale the image without distortion */
}

header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: auto; /* Make the header height adapt to its content */
  background-color: #333;
  color: white;
  display: flex;
  justify-content: flex-end;
  align-items: center; /* Vertically align the content (menu button) */
  padding: 0 10px; /* Horizontal padding only */
  z-index: 1000;
}

.menu-button img {
  cursor: pointer;
}

/* Dropdown Menu Styling */
.dropdown-menu {
  list-style: none;
  position: absolute;
  top: 60px; /* Position below the menu button */
  right: 10px;
  background-color: #444;
  border: 1px solid #555;
  padding: 10px;
  display: none; /* Initially hidden */
  flex-direction: column;
}

.dropdown-menu li {
  margin: 5px 0;
}

.dropdown-menu a {
  color: white;
  text-decoration: none;
  padding: 5px 10px;
  display: block;
}

.dropdown-menu a:hover {
  background-color: #555;
}

/* Main Content Area */
main {
  height: 100vh;
  overflow-y: auto; /* Scrollable content */
  padding: 60px 20px; /* Leave space for header */
}

#content {
  max-width: 600px;
  margin: 0 auto;
}

.responsive-image {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}

.background-sky {
    background-image: url('../images/snowmeat%20eye.jpg');
    background-size: cover;
    background-position: center;

}

.content-box {
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white */
    padding: 20px; /* Adjust padding as needed */
    border-radius: 10px; /* Optional: gives rounded corners */
    margin: 0 auto; /* Centers the box horizontally */
    width: 60%; /* Adjust width as needed to fit the content */
    max-width: 1200px; /* Optional: ensures it doesn't get too wide on large screens */
}

/* Mobile-Friendly Adjustments */
@media screen and (max-width: 768px) {
  header {
    padding: 5px;
  }

  .menu-button img {
    width: 60px;
    height: 30px;
  }

  .dropdown-menu {
    top: 50px; /* Adjust position for smaller screens */
    right: 5px;
    width: 80%; /* Take up more space on smaller screens */
  }

  main {
    padding: 80px 15px; /* More padding for small screens */
  }

  #content {
    max-width: 90%; /* Make content box smaller on mobile */
  }

  .content-box {
    width: 80%; /* Adjust the box to fit better on smaller screens */
  }

  .responsive-image {
    margin: 15px 0; /* Slightly smaller margin on mobile */
  }
}

/* Extra Small Devices */
@media screen and (max-width: 480px) {
  .menu-button img {
    width: 60px;
    height: 30px;
  }

  .dropdown-menu {
    width: 100%; /* Full-width dropdown on very small screens */
  }

  .content-box {
    width: 90%; /* Make the content box even smaller */
  }
}

.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.tab-button {
  padding: 10px 20px;
  cursor: pointer;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 5px;
}

.tab-button:hover {
  background-color: #555;
}

.tab-content {
  border: 1px solid #333;
  padding: 20px;
  border-radius: 5px;
}