body, html {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  background-color: #034F1B;
}

header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #7a0910;
  box-shadow: 0 10px 5px #032d10;
  padding: 15px 0;
}

h1 {
  font-size: 3vw;
  color: white;
  text-align: center;
  margin: 0;
}

label {
  color: white;
  padding-bottom: 10px;
  padding-top: 10px;
}

.img-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden; /* keeps image within container */
  margin: -10% 0px 0px 0px
}

.lights {
  width: 100%;
  height: auto; /* maintain aspect ratio */
  max-height: 100%; /* optional: cap max height if needed */
  object-fit: cover;
}

.present {
  width: 20%;
  height: auto; /* maintain aspect ratio */
  max-height: 100%; /* optional: cap max height if needed */
  object-fit: cover;
}

.present-button:hover {
  opacity: 0.8;
}

.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.regular-button {
  background-color:#800000;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  width: 150px;
  text-align: center;
  margin: 10px 0;
}

.present-button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.present-button img {
  display: block;
  width: 100px; /* adjust as needed */
  height: auto;
}

button:hover {
  opacity: 0.8;
}

.popuptext {
  color: white;
}

.popup {
  padding-top: 20px;
  font-size: 3vw;
}

.gandalf {
  width: 20%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
}

@media (max-width: 600px) {
  h1 {
    font-size: 5vw;
  }

  header {
    padding: 10px 0;
  }

  .popup {
    font-size: 7vw;
  }

  button {
    width: 100px;
    padding: 8px 15px;
  }
}