.html{
    z-index: 1;
}

/*Desktop Header*/
.navbar{
    height: 10vh;
    width: 100%;

    display: block;

    position: fixed;
    top: 2vh;
    left: 0;
    z-index: 1;
 
}

.wrapper{
    
    padding-right: 1vw;

    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    
    padding-top: 0;
    backdrop-filter: blur(10px);
    background-color: rgb(39, 110, 166, 0.1);
}

.wrapper.scrolled{
        background-color: rgb(39, 110, 166, 1);
}

.title_text{
    font-family: 'Times New Roman', Times, serif;
    color: white;
	font-size: 2.5rem;
}

.navigation ul{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1vw;
}
.navigation ul li{
    list-style: none;
}
.navigation ul li a{
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: HeadingPro;
}

/*Mobile Header*/
.topnav {
    display: none;
  overflow: hidden;
    background-color: rgb(39, 110, 166, 1);
  position: relative;
}

.topnav #myLinks {
  display: none;
  font-family: HeadingPro;
}

.topnav #myLinks a{
    border-top-style: solid;
    border-top-width: 1px;
}

.topnav a, p {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

.topnav a.icon {
  background: rgb(39, 110, 166, 1);
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}


.active {
  background-color: rgb(39, 110, 166, 1);
  color: white;
  font-weight: bold;
  font-size: 2rem;
}
/*Media Query*/

@media (max-width: 750px) {
    .navbar{
        display: none;
    }
    .topnav{
        display: block;
    }
}