/* * {box-sizing:border-box} */
 
header { 
  display: block;
  text-align:left;
  color:  grey;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1.5vh;
  padding-left: 1.0vh;
  padding-top: 1.0vh;
}
  
h1 {
  font-family: Helvetica, Arial, sans-serif;
  padding-top: 1vh;
  color:  grey;
  font-size: 3vh;
  font-weight: normal;
  text-align: center;
}

p {
  color: grey;
  text-align: left;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-size: 1.5vh;
}

.banner {
  display: flex;
  flex-direction: column;
  position: absolute;
  height: 40vh;
  margin-left: 0;
  margin-right: 0;
  align-items: flex-start;
  left: 0%;
  right: 0%;
}

.mainblock {
  z-index: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  align-content: center;
  margin: auto;
  height: 65vh;
  width: 85%;
  top: 40vh;
  left: auto;
  right: auto;
  color: white;
  box-sizing: border-box;
}

.backdrop {
  display: flex;
  flex-direction: column;
  position: static;
  height: 40vh;
  width: 100%;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  align-items: flex-end;
  justify-content: center;
  left: 0%;
  right: 0%;
  box-sizing: border-box;
}

img {
  width: 100vw;
  height: 40vh;
  image-rendering: high quality;
  align-self:flex-end;
  bottom: 0;
  box-sizing: border-box;
  object-fit: cover;
}

/* The container needed to position the dropdown content */
.dropdown {
  z-index: 2;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  padding: 1.5rem;
  transition: all 0.3s ease; /* Add transition for hover effects */
  color: grey; 
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  background-color: #94df97d1;
}

/* Dropdown Button */
.dropbtn {
  background-color: white;
  color: grey;
  padding: 1vmin;
  font-family: sans-serif;
  font-size: 3vmax;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease; /* Add transition for hover effects */
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  font-family: sans-serif;
  font-size: 1.5vh;
  line-height: normal;
  right: 0;
  min-width: 12em;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 2;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: grey;
  padding: 3vmin;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
  .dropdown-content a:hover {
    background-color: #94df97d1;
    color: grey;
}

