/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
@font-face {
    font-family: 'BebasNeue';
    src: url('./fonts/BebasNeue-Bold.otf');
}
body {
  background-color: #125ca8;
  height: 100vh;
  background-image: url("background.jpg");
  color: white;
  font-family: Verdana;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
}
body::-webkit-scrollbar {
  display: none;
}
.content {
  width: 75%;
}
.header { 
  text-align: center;
  font-family: BebasNeue;
  font-size: 32px;
  padding: 10px 0px;
}
h1 {
  margin: 0px;
}
.navbar {
  height: 40px;
  width: 100%; 
}
.navbar ul{
  display: flex;
  padding: 0;
  margin: 0;
  color: white;
  list-style-type: none;
  justify-content: space-evenly;
}
.navbar li{
  padding: 5px 10px;
  margin: 0px 5px;
  text-align: center;
  width: 20%;
  border: 2px solid;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.2);
}
.navbar a{
  color: white;
 font-weight: 800;
 text-decoration: none;
}
.navbar li:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.footer {
  padding: 5px 0px 20px 0px;
}


  