@media screen and (max-width: 1199px) {

    .wrapper{
        width: 100%;
        height: 100%;
    }
    
    .sidebar{
        display: none;
    }
    .topnav{
        width: 100%;
        text-align: center;
    }
    .stationGrid{
        display: inline-grid;
        gap: 50px;
        grid-template-columns: 1fr;
    }
}
@media screen and (min-width: 1200px) {
    .topnav{
        display: none;
    }
    .wrapper{
        max-width: 100%;
        height: 100%;
        scroll-behavior: auto;
        position:relative;
        overflow-y: scroll;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none;  /* Internet Explorer 10+ */
    }

    .wrapper::-webkit-scrollbar { /* WebKit */
        width: 0;
        height: 0;
    }
    .content{
        float: right;
        max-width: 85%;
    }
    .sidebar{
        max-width: 15%;
        float: left;
        position: sticky;
        position: -webkit-sticky;
        top: 5;
        
        
    
    }

    .stationGrid{
        display: inline-grid;
        gap: 50px;
        grid-template-columns: 1fr 1fr;
    }
}

iframe{
    width: 100%;
}
.dropdown {
    position: relative;
    display: block;
}
.dropdown-content {
    display: none;
    position: relative;
}
.dropdown:hover .dropdown-content {
    display: block;
    position: relative;
    max-width: 200px;
}

ul {
    list-style-type: none;
}

li a {
    display: block;
    color: #000;
    padding: 8px 16px;
    text-decoration: none;
}

li a.active {
    background-color: #04AA6D;
    color: white;
}

li a:hover:not(.active) {
    background-color: #555;
    color: white;
}

iframe {
    border: 0;
    display: block;
    margin: auto;
}

h1 {
    font-size: 36pt;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    color: rgb(76 76 76);
}

h2{
    font-size: 24pt;
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(76 76 76);
}
.detail {
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;
    font-size: 14pt;
}

.explain {
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;
    font-size: 8pt;
}
.homenav{
    width: 600px;
    height: 150px;
    border-style: solid;
    border-color: #555;
    border-width: 2px;
    margin-bottom: 5;
    margin-left: 200;
    margin-right: 200;
}
.homenav a{
    text-decoration: none;

}
.homenav img{
    float: left;
}
.homenav:hover{
    opacity: .6;
}

.glossList{
    list-style-type: square;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12pt;
}
.spacer{
    opacity: 0.0;
}
/* Style the navigation menu */
.topnav {
    background-color: white;
    position: fixed;
    top: 5;
    z-index: 1;
    
  }
  
  /* Hide the links inside the navigation menu (except for logo/home) */
  .topnav #myLinks {
    display: none;
  }
  
  /* Style navigation menu links */
  .topnav a {
    color: black;
    padding: 12px 12px;
    text-decoration: none;
    font-size: 16px;
    display: block;
  }
  
  /* Style the hamburger menu */
  .topnav a.icon {
    background: black;
    color:white;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
  }
  .topnav .active {
    background-color: #04AA6D;
    color: white;
  }
  /* Add a grey background color on mouse-over */
  .topnav a:hover:not(.active) {
    background-color: #555;
    color: white;
  }

