body, html {
  height: 100%;
  margin: 0;
  overflow: hidden;
}

/* Background image */
body {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: url('media/home.jpg') no-repeat center center/cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}


.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  position: relative;
  display: flex;
  align-items: flex-start; 
  z-index: 1000; /* Make sure menu-dropdown overlaps on top of overlay box, as it's child of header */
 
}

/* Container for blurb and buttons should scale with page size */
.overlay-box {
  position: absolute; 
  right: 5rem;
  width: 40%;
  height: max(32vw, 350px);  
  top: 20%;  
  background: rgb(0, 0, 0, .1);
  backdrop-filter: blur(3px);   
  border-radius: 30px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 900;
}

.overlay-title {
  display: flex;
  line-height: 1;
  margin-bottom: 3vw;
  text-align: center;
  justify-content: center;
  color: white;
  font-family: "Urbanist", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-size: 5vw;
  font-style: italic;
}

/* Paragraph styling */
p {
  display: flex;
  text-align: center;
  justify-content: center;
  font-family: "Urbanist", sans-serif;
  color: white;
  font-size: 1.6vw;
  line-height: 1.4;
  font-weight: 200;
}


/* Map and Attractions buttons */
.button-container {
  margin-top: 2.5vw;
  display: flex;
  text-align: center;
  justify-content: center;
  gap: 3vw;
}

#logo{
  cursor: pointer;
  width: 5.5vw;
  height: 5.5vw;
}

#crowdscope {
  font-family: "Outfit", sans-serif;
  font-size: 3vw;
  letter-spacing: -2px;
  font-optical-sizing: auto;
  font-weight: 300;
  color: white;
  margin-top: 10px;

}

/* Map and Attractions button styling */
.explore {
  background-color:#27504a;
  border: none;
  color: white;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  font-size: 1.5vw;
  padding: 0.5vw 0.9vw;
  border-radius: 10px;
}

.explore:hover {
  cursor: pointer;
  background-color:#3b867b;
  transition: all 0.2s ease;
}

#logo {
  padding-left: 1rem;
}

#menuButton {
  background-color: #27504a !important;
  border: none !important;
  color: white !important;
  border-radius: 10px;
  font-weight: 400;
  font-size: 1vw;
  margin-top: 20px;
  margin-right: 20px;
}

#menuButton:hover {
  cursor: pointer;
  background-color:#3b867b !important;
  color: #ffffff !important;
  transition: all 0.2s ease;
}