46 lines
650 B
CSS

html {
background: url("assets/background.jpg") no-repeat fixed;
background-size: cover;
}
html * {
color: white;
font-family: Roboto, serif;
}
span {
font-size: 20px;
}
.navbar {
background-color: #333;
overflow: hidden;
border-radius: 15px;
box-shadow: 10px 10px 5px rgba(0,0,0,0.5);
margin-bottom: 50px;
}
.navbar a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.navbar a:hover {
background-color: #6687ff;
color: black;
}
.navbar a.active {
background-color: #2250f5;
color: white;
}
@-webkit-keyframes fadeIn {
from {opacity: 0;}
to {opacity: 1;}
}