html, body{
  padding: 0;
  margin: 0;
  height: 100vh;
  scroll-behavior: smooth;
}
  
a{
  text-decoration: none;
}

/*Top Sticky Menu Code*/
.menu-container{
  width: 100vw;
  max-width: 100%;
  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);
  position: sticky;
  top: 0;
  z-index: 1;
}

.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%;
} 


 
  
  
/* Main Header Code */
#header-container{
  width: 100vw;
  max-width: 100%;
  height: 95vh;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.header-flex{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  border-radius: 5%;
  animation: bringToLife 1.5s;

}

#header{
  font-family: 'Bebas Neue', cursive;
  font-size: 220px;
}

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


/* Main Content Code */
#content-container{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background-color: black;
  height: auto;
  width: 100vw;
  max-width: 100%;
  justify-content: space-around;
  align-items: flex-start;
}

.image-flex{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 850px;
  width: 800px;

}

.image-flex > img{
  height: auto;
  width: 95%;
  border-radius: 20px;
  filter: drop-shadow(1px 1px 1px black);
}

.text-flex{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: auto;
  width: 1000px;
  font-family: "Abel",sans-serif;
  font-size: 24px;


}

.text-flex > p {
  margin-top: 80px;
  padding: 20px;
}


.link-flex{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: auto;
  width: 100vw;
}

.link-flex > a >  img {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 30px;
}

.link-flex > a > img:hover {
  bottom: 10px;
  left: 10px;
}








