html{
    background-color: rgb(60, 60, 96);
    font-family: 'Roboto', sans-serif;
}
    

.container{
    margin-top: 100px;
    color: cornsilk;
     
}
h1{
    font-size: 8em;
    font-weight: bolder;

}
nav{
    background-color: cornsilk;
    width: 100%;

}
nav ul{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: left;
    padding: 5px 0px 10px 20px;
    flex-wrap: nowrap;


}
nav li{
    list-style: none;
    width:300px;
    
}

nav a {
    text-decoration: none;
    margin-right: 15%;
    transition:ease-in-out .2s;


}
nav a:visited{
    color: black;
}
nav a:link{
    color:black
}
 nav a:hover{
    letter-spacing: 1pt;
 }
 .skeleton{
    position: absolute;
    animation: skeleton linear 12s infinite;
    z-index: 2;
    margin-left:-300px;
    height: 200px;
    mix-blend-mode: screen;
 }

 @keyframes skeleton{
    0% {left:0}
    100% {left: 125vw}
 }