* {box-sizing:content-box}

/* body styles */
h1 {
  font-family: Helvetica, Arial, sans-serif;
  padding-top: 2.5vh;
  color:  grey;
  font-size: 4vh;
  font-weight: normal;
  text-align: center;
}

h2 {
  font-family: Helvetica, Arial, sans-serif;
  color:  grey;
  font-size: 2.5vh;
  font-weight: normal; 
  text-align: center;
}

.banner {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 15vh;
  margin-left: 0;
  margin-right: 0;
  align-items: top;
  justify-content: center;
  left: 0%;
  right: 0%;
}

.container {
  z-index: 1;
  position: relative;
  max-width: 100vw;
  max-height: 95vmin;
  margin-top: 0vh;
  margin-bottom: auto;
  margin-left: 0%;
  margin-right:0%;
  padding: 0%;
  align-items: center;
  justify-content: center;
}

.frame {
  z-index: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: auto;
  padding: 0%;
  align-items: center;
  justify-content: center;
  width: 90vmin;
  height:90vmin;
}

img {
  z-index: 1;
  width: auto;
  height: auto;
  max-width: 90vmin;
  max-height:90vmin;
  image-rendering: high quality;
  outline: solid 0.075rem black;
  object-fit: contain;
  display: block;
}

/* The container needed to position the dropdown content */
.dropdown {
  z-index: 2;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  padding: 1.0rem;
  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;
  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: 3;
}

/* 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;
}
