
/*Body*/
body{
  background-color: lightgray;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
    
/*Header*/
header{
  background-image: url('pictures/projects.jpeg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  height: 100%;
  text-align: center;
  padding-bottom: 25%;
}
header h1{
  color: #f2f2f2;
  font-size: 100px;
  text-align: left;
  font-family: Roboto;
  margin-top: 9%;
  margin-left: 11%;
}
header h3{
  color: #e6e6e6;
  font-size: 22px;
  font-family: Arial;
  text-align: left;
  margin-top: -4.5%;
  margin-left: 11%;
}
    
/*Navigation*/
nav ul{
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
nav ul li{
  cursor: pointer;
  float: left;
  font-size: 18px;
  padding: 1.2em;
  text-align: center;
  margin-top: 1%;
}
.logo{
  color: #e6e6e6;
  font-size: 26px;
  margin-top: -2px;
}
nav ul li a{
  color: #e6e6e6;
  text-decoration: none;
}
  
#text{
  color: blue;
  font-size: 24px;
  font-family: Roboto;
  margin-left: 7%;
}
    
/*Slideshow*/
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin-top: 2%;
  margin-left: auto;
  margin-right: auto;
}
.mySlides {
  display: none;
}
.textt{
  color: #f2f2f2;
  font-size: 16px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}
@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

  
/*Footer*/
footer{
  background-color: white;
  color: sliver;
  font-family: Helvetica;
  font-size: 17px;
  padding: 0.5em 0 0.5em 3em;
}
.links{
  font-size: 12px;
  text-align: center;
}
    
/*Back to top button*/
#myBtn {
  display: none; 
  position: fixed; 
  bottom: 25px; 
  right: 30px; 
  z-index: 99; 
  border: none; 
  outline: none; 
  background-color: red; 
  color: white; 
  cursor: pointer; 
  padding: 15px; 
  border-radius: 10px; 
  font-size: 18px; 
}
#myBtn:hover {
  background-color: #555; 
}