body {
  font-family: "june-expt-variable", sans-serif;
  margin: 0;
  height: 100%;
  background: linear-gradient(to bottom, #F2EBC4, #00fffc);
  color: #001CB7;
  font-size: 17px;
}

.topnav {
  overflow: hidden;
  background-color: #F2EBC4;
  border-bottom: #001CB7 1px solid;
  display: grid;
  grid-template-columns: 5rem 5rem auto 5rem;
}

.topnav a {
  float: left;
  display: block;
  color: #001CB7;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #f2ebc4a8;
  color: #001CB7;
}

.topnav a.active {
  border-right: #001CB7 solid 1px;
}

.topnav input[type=text] {
  float: right;
  padding: 6px;
  border: none;
  margin-top: 8px;
  margin-right: 16px;
  font-size: 17px;
}

#search-input {
  justify-self: end;
  margin: 6px;
}

#search-button {
  justify-self: end;
  background-color: #001CB7;
  color: #f5f5f5;
  border: none;
  font-size: 17px;
  cursor: pointer;
  border-radius: 5px;
  margin-right: 6px;
}

@media screen and (max-width: 600px) {
  .topnav a,
  .topnav input[type=text] {
    float: none;
    display: block;
    text-align: left;
    width: 100%;
    margin: 0;
    padding: 14px;
    color: #001CB7;
    scrollbar-highlight-color: #001CB7;
  }
  .topnav input[type=text] {
    float: right;
    padding: 6px;
    border: none;
    margin-top: 8px;
    margin-right: 16px;
    font-size: 17px;
    width: 200px;
    background-color: #f5f5f5;
    border-radius: 5px;
  }
}

a {
  text-decoration-line: none;
  color: #001CB7;
}

#data-container {
  padding: 2%;
}

@font-face {
  font-family: 'june-expt-variable';
  src: url('path/to/font.woff2') format('woff2-variations');
}

.beach-name {
  position: relative;
  font-family: "june-expt-variable", sans-serif;
 
  text-align: center;
  font-size: 28px;
}

.result {
  text-align: center;
  padding-left: 1%;
  padding-right: 1%;
  font-size: 28px;
}

.header {
  text-align: center;
  padding-left: 1%;
  padding-right: 1%;
  padding-top: 5%;
}

.highest {
  padding-left: 1%;
  padding-right: 1%;
  text-align: center;
  font-size: 28px;
}

@keyframes gradient {
  0% {
    font-variation-settings: "STYL" 0;
    transform: scale(1);
  }
  100% {
    font-variation-settings: "STYL" 100;
    transform: scale(1.2);
  }
}

.dropbtn:hover {
  animation-name: gradient;
  animation-duration: 2s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  cursor:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'  width='40' height='48' viewport='0 0 100 100' style='fill:black;font-size:24px;'><text y='50%'> 🌊</text></svg>") 16 0,auto; /*!emojicursor.app*/
}

.dropbtn {
  position: relative;
  font-family: "june-expt-variable", sans-serif;
  font-variation-settings: "STYL" var(--styl);
  text-align: center;
  color: #001CB7;
  font-size: 74px;
  padding-left: 6%;
  padding-right: 6%;
  padding-top: 4%;
  padding-bottom: 4%;
  position: relative;
  transform: scale(1);
  border: none;
  cursor: pointer;
  background-color: transparent;
  height: 250px; /* Adjust the height as needed */
}

.dropdown {
  position: relative;
  display: inline-block;
  animation:none;
  transform: nones;
}

.dropdown-content {
  display: none;
  min-width: 900px;
  height: 200px;
  overflow: auto;
  background-color: #001CB7;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  position: relative;
  animation:none;
  transform: none;
  margin-bottom: 6%;
  color:#F2EBC4;
  font-size: 28px;
}

.dropdown-content a {
  text-decoration: none;
  display: block;
  position: relative;
  animation:none;


}

.show {
  display: block;
}

