html, body{
  padding: 0;
  margin: 0;
  overflow: hidden;
}

a{
  text-decoration: none;
}

/*Top Sticky Menu Code*/
.menu-container{
  width: 100vw;
  height: 75px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  font-family: 'Abel', sans-serif;
  filter: drop-shadow(1px 1px 5px black);
  
}

.menu-links{
  display: flex;
  flex-direction: row;
  width: 70%;
  height: inherit;
  justify-content: flex-start;
  align-items: center;
  font-size: 28px;
  padding: 10px;

}

.menu-slider{
  display: flex;
  flex-direction: row;
  width: 30%;
  height: inherit;
  justify-content: space-around;
  align-items: center;

}

.menu-item{
  padding-left: 20px;

}

.menu-links > a:hover{
  animation: increaseFontSize 1s;
  font-size: 30px;
}

@keyframes increaseFontSize {
  0%{
    font-size: 28px;
  }
  100%{
    font-size: 30px;
  }
}

#img-wht{
  padding-left: 20px;
  height: 30px;
  width: auto;
  display: none;

}

#img-blk{
  padding-left: 20px;
  height: 30px;
  width: auto;
  display: none;

}

#sun{
  width: 30px;
  height: auto;
 
}

#moon{
  width: 25px;
  height: auto;

}




/*Slider for Dark Mode*/
.switch {
  position: relative;
  display: inline-block;
  width: 120px;
  height: 34px;
}
  
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
  
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}
  
.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  -webkit-transition: .4s;
  transition: .4s;
  background-color: #f00;

}

  
  
input:checked + .slider {
  background-color: #f00;
}

input:focus + .slider {
  box-shadow: 0 0 1px #f00;
}

input:checked + .slider:before {
  -webkit-transform: translateX(86px);
  -ms-transform: translateX(86px);
  transform: translateX(86px);
}

.slider.round {
  border-radius: 34px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.slider.round:before {
  border-radius: 50%;
} 



/* Body Code */

#main-flex{
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;

}

#title-flex{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  
  width: 100vw;
  height: 100vh;
  border-radius: 5%;
  animation: bringToLife 1.5s;
  
}

@keyframes bringToLife {
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
  
}


.top-flex{
  display: flex;
  width: inherit;
  height: 50%;

  justify-content: center;
  align-items: flex-start;

}

.bottom-flex{
  display: flex;
  width: inherit;
  height: 50%;
  justify-content: center;
  align-items: flex-start;

}

#name{
  font-family: 'Bebas Neue', cursive;
  font-size: 250px;
}

.rotate{
  margin-top: 20px;
  font-family: 'Bebas Neue', cursive;
  font-size: 50px;
  color: #f00;
}


@keyframes fadeInAndDisappear {
  0%{
    display: block;
    opacity: 0;
  }
  50%{
    opacity: 1;
  }
  100%{
    opacity: 0;  
  }
}


