@media (max-width:600px){

#logo{
top:0px;
right:0px;
left:0px;
bottom:0px;
height:100px;
width:100px;
position:relatiive;
display:flex;


align-items: center;
filter:brightness(100%);
z-index:9;
}
#top-nav {
/*background:white;
border:10px;
border-color:red;*/
background: rgba( 255, 255, 255, 0 );
box-shadow: 0 0px 0px 0 rgba( 31, 38, 135, 0.37 );
backdrop-filter: blur( 0px );
-webkit-backdrop-filter: blur( 0px );
border-radius: 10px;
border: 1px solid rgba( 255, 255, 255, 0.18 );
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;  
  box-sizing:border-box;
  padding:1px ;
  height:100px;
  
 }
}
@media (min-width:999px){

#logo{
top:0px;
right:0px;
left:0px;
height:100px;
width:100px;
position:relative;
display:flex;
margin-top:;
bottom:0px;
align-items:center ;

z-index:9;

}
}
#top-nav {
/*background:white;
border:10px;
border-color:red;*/
background: rgba( 255, 255, 255, 0 );
box-shadow: 0 0px 0px 0 rgba( 31, 38, 135, 0.37 );
backdrop-filter: blur( 0px );
-webkit-backdrop-filter: blur( 0px );
border-radius: 10px;
border: 1px solid rgba( 255, 255, 255, 0.18 );
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;  
  box-sizing:border-box;
  padding: ;
  height:;
  
 }

.menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
  
}
.menu__item{
text-decoration:none;
color:blue;
font-size:20px;
font-weight:;
letter-spacing:2.5px;
}
.menu__item:hover{
text-decoration:none;
color:red;
font-size:20px;
font-weight:;
letter-spacing:2.5px;
}
@media (min-width:999px){
.menu__item1{
text-decoration:none;
color:#1a06ff;
letter-spacing:2.5px;
font-size:20px;
font-weight:;
}
.menu__item1:hover{
text-decoration:none;
color:#183b08;
letter-spacing:2.5px;
}
}
@media(max-width:600px){
.menu__item1{
text-decoration:none;
color:#34ebeb;
letter-spacing:2.5px;
}
.menu__item1:hover{
text-decoration:none;
color:#ffffff;
letter-spacing:2.5px;
}
.menu__item{
text-decoration:none;
color:#fff;
letter-spacing:2.5px;
}
.menu__item:hover{
text-decoration:none;
color:#aeed0e;
letter-spacing:2.5px;
}
}
/*.menu__item:hover{
text-decoration:none;
color:red;
}
.menu__item1:hover{
text-decoration:none;
color:red;
}*/
.menu > li {
  margin: 0 1rem;
  overflow: hidden;
 
}

.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color:blue;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: '';
  margin-top: -8px;
}

.menu-button::after {
  content: '';
  margin-top: 8px;
  
}


#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
  background:red;
}

#menu-toggle:checked + .menu-button-container .menu-button {
 
  background:red;
  
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
  
  background:red;
}

@media (max-width: 700px) {
  .menu-button-container {
    display: flex;
  }
  .menu {
    position: absolute;
    top: 80px;
    margin-top:;
    left: 2px;
    right:2px;
    flex-direction:column;
    width: 100%;
    justify-content: center;
    align-items: center;
    height:160px;
    z-index:99;
  }
  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ .menu li {
    border: 1px solid #111;
    height: 2.5em;
    padding: 0.5em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    
  }
  .menu > li {
    display:flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: white;
    background-color:#020a29;
    height:100%;
    z-index:2;
    overflow:;
   
    
  }
  .menu > li:hover {
  color:red;
  
    }
  .menu > li:not(:last-child) {
    border-bottom: 1px solid #444;
  }
}


h2 {
  vertical-align: center;
  text-align: center;
}

html {
  margin: 0;
  height: 100%;
  
}

* {
  font-family: "lucida bright";
  box-sizing: border-box;
  
}


