html, body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    animation: changeColor 8s infinite;
}

@keyframes changeColor {
   0%  {background-color: rgb(87, 81, 81); }
   30%     {background-color: rgb(110, 110, 110);}
   70%    {background-color: rgb(255, 255, 255);}
   100%  {background-color: rgb(87, 81, 81); }
  
}

#Container {
    max-width: 992px;
    margin: 0 auto;
    padding-top: 100px;
    border-left: 2px solid rgb(114, 111, 112);
    border-right: 2px solid rgb(114, 111, 112);
    
    
}
h1{
    color: rgb(0, 0, 0);
    font-size: 60px;

}

img{
    width: 100%;
}


.project {
    border-bottom: 2px solid rgb(90, 85, 87);
}

a{
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    text-transform: lowercase;
    transition: 1s all;
}

a:hover{
    color: rgb(0, 0, 0);
    cursor: pointer;
    transition: 1s all;
    margin-left: 20px;

}
    .animatedlink {
        font-size: 18px;
        font-weight: bold;
        transition: 1s all;
        margin-left: 20px;

    } 
.animatedlink.animatedlink:hower {
    color: black;
    cursor: pointer;
    transition: 1s all;
    margin-left: 20px;
}

.menuLink { 
    font-size: 34px;
    text-transform: uppercase;
    font-weight: lighter;
    background-color:rgb(0, 0, 0);
    padding: 8px 16px;
    border-radius: 10px;
}
.menuLink:hover { 
color: rgb(0, 0, 0);
background-color: red;
}
#Menu {

   position: fixed;
   width: 100%;

}
#InnerMenu {
    background-color: rgb(0, 0, 0);
    width: 992px;
    margin: 0 auto;
    height: 70px;
    text-align: center;
}