@import url('https://fonts.googleapis.com/css2?family=Rubik+Mono+One&display=swap');

body{
    /*background-image: url(images/top.jpg);*/
    margin: 0px;
    min-width: 480px;
    max-width: 1920px;
   background-position: center;
    background-size:cover;
    background-repeat:no-repeat ;
    background-color: white;
/*background-color: white;*/
}
h1{
    font-family: 'Rubik Mono One', sans-serif;
        font-size: 75px;
        color: 	white;
        display:inline-block;   
        animation: example 2s ease-in-out infinite;
        padding-left: 50px;
        margin-top: -2000px;
}
@keyframes example {
    from{color:white}
    to {color: black}
  }
.challenge-span{
  margin-left:8%;
    font-size: 50px;
    color: 	black;
    font-weight: bold;
    background-color: #e8ffff;
    width: 100%;
    max-width: 100%;
    padding-bottom: 25px;

}
.container{
    margin-right: 100px;
    margin-left: 100px; 
max-height: 250px;}

.logo{   
     margin-left: -150px;
    margin-top: 40px;
    width: 220px;
}
.top2{
  width: 100%;
  background-color: #b2ebf2;
  margin-left: 9px;
  margin-right: 9px;
  text-align: center;
  font-size: 30px;
  font-family: "Comic Sans MS", cursive, sans-serif;
   padding-right: 38px;

}
.header-p{
  padding-top: 20px;
  margin-left: 28%;
  padding-bottom: 75px;
  text-align: center;
  max-width: 50%;
}
.top1{
  padding-top: 20px;
    background-color: #e8ffff;
  padding-bottom: 35px;
}
.challenge-img{
  padding-top: 15px;
    width: 45vw;
    height: 45vh;
}
#header{
    height: 30vh;
    background-image: url(images/img.jpeg);
    max-height: 30vh;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
}
#sideNav{
    width: 250px;
    height: 100vh;
    position: fixed;
    right: -250px;
    top: 0;
    background-color: #12172b;
    background-position: center;
    background-size: cover;
    z-index: 2;
    transition: .5s;
}
nav ul li{
    list-style: none;
    margin: 90px 20px;
}
a{
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    text-decoration: none;
    color:white;
    font-size: 27px;
    
}
li :hover{
    background-color: black ;
    transition-duration: 0.7s;
}

#menuBtn{
    margin-top: 20px;
    width: 95px;
    position: fixed;
    right: 30px;
    top: 12px;
    z-index: 2;
    cursor: pointer;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60px;
    background-image: linear-gradient(to left ,black,dimgray );
    text-align: center;
  }  

  .footer a {
    float: left;
    padding-top: 5px;
  
}
  
  .footer a:hover {
    background-color: #ddd;
    color: black;
  }
  #logo-footer{
      padding-left: 55px;
    width: 60px;
    height: 45px;
    float: right;
  }
#copy-right{
    float: right;
    margin-top: 20px;
    margin-right: 15px;
    color: white;
}
#copy-right-img{
    width: 10px;
}

::-webkit-scrollbar {
    width: 20px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #12172b; 
    border-radius: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #12172b; 
  }