body {
  font-family: "Jersey 15", sans-serif;
  text-align: center;
  background-color: black;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed; /* Keep background fixed while scrolling */
  margin: 0;
  padding: 0;
  min-height: 100vh; /* Ensure full height */
}

/* Set up the header with a three-column grid */
.header {
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* Left spacer, auto-sized logo, right spacer */
  align-items: center;
  background-color: transparent;
}

/* Place the logo in the center column */
#logo_img {
  grid-column: 2;
  justify-self: center; /* Center the logo within its grid area */
  max-height: 300px;
  width: auto;
}

/* Place the buttons in the right column */
.buttons {
  grid-column: 3;
  justify-self: end; /* Align the button container to the right */
  display: flex;
  gap: 10px; /* Add some space between the buttons */
}

/* both buttons share the same look */
.logout-button,
.login-button,
.signup-button {
  background-color: #5a1073;
  opacity: 0.5;
  border: none;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(128, 0, 128, 0.7);
  transition: box-shadow 0.3s ease-in-out;
}

.login-button:hover,
.signup-button:hover,
.logout-button:hover {
    box-shadow: 0 0 25px rgba(128, 0, 128, 1);
    opacity: 1; /* Make the button fully opaque on hover */ 
}

/* rest of your existing CSS… */
.container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}

.box img{
    background-color: transparent;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 1.2em;
    font-weight: bold;
}

.box {
  /* each grid‐item now takes 100% of its cell */
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  /* styling that was on .box img can live here */
  background-color: rgba(0, 0, 0, 0);
  border-radius: 10px;
}

.app-icon {
  /* make the icon fill the box, preserving aspect ratio */
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* make the guest-message visible and centered */
.guest-info {
  background-color: transparent;
  grid-column: 1 / -1;           /* span all 3 columns */
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.guest-text {
  color: #fff;                   /* white text */
  font-size: 1.2rem;
  line-height: 1.4;
  text-shadow: 0 1px 3px rgba(0,0,0,0.7);
  max-width: 80%;
  text-align: center;
}
.username{
    color: #ffffff;
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.7);
    margin-right: 10px;
}
.profile-username img {
  width: 60px; /* You can adjust this value to make it smaller or larger */
  height: 60px;
  border-radius: 50%;
  object-fit: cover; /* This will prevent the image from being distorted */
}
.profile-username{
display: flex;
align-items: center;
justify-content: center;
background-color: rgba(0, 0, 0, 0.5);
padding: 10px;
border-radius: 10px;
}