body {
  background-color: #CCCCCC;
  padding:0;
  margin:0;
  height:100%;
}


.exo-2-regular {
  font-family: "Exo 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.bangers-regular {
  font-family: "Bangers", system-ui;
  font-weight: 400;
  font-style: normal;
}


.header {
  padding: 80px;
  text-align: center;
  background: #003366;
  color: #FFCC00;
}

.navbar {
    position: sticky;
  top: 0;
  overflow: hidden;
  background-color: #FFCC00;
}


.navbar a {
  float: left;
  display: block; 
  color: #CC0000;
  text-align: center;
  padding: 20px 22px;
  text-decoration: none;
  font-family: courier;
}

.navbar a:hover {
  background-color: #CC0000;
  color: #FFCC00;
}

.navbar a.split {
    position: sticky;
  top: 0;
  float: right;
  background-color: #FFCC00;
  color: #660000;
  text-align: center;
  padding: 20px 22px;
  text-decoration: none;
  font-family: courier;
  display: block;
  
}

.navbar a.split:hover {
  background-color: #660000;
  color: #FFCC00;
}

* {
  box-sizing: border-box;
}

.row {
  display: flex;
  flex-wrap: wrap;
}


.main {
  flex: 100%; 
  background-color: #CCCCCC;
  padding: 50px 300px;
  color: #0033CC;
}


@media screen and (max-width: 700px) {
  .row {
    flex-direction: column;
  }
}

@media screen and (max-width: 400px) {
  .navbar a {
    float: none;
    width: 100%;
  }
}

@font-face {
    font-family: bangers;
    src: "fonts/Bangers-Regular.ttf"
}

h1 {
  font-family: verdana;
  font-size: 55px;
}

h2 {
    font-family: "bangers";
    font-size: 45px;
    color: #660000;
}

h3 {
    
}

h4 {
    font-family: verdana;
    font-size: 38px;
}

h5 {
    font-family: verdana;
    font-size: 26px;
}

h6{
    font-family: verdana;
    font-size: 14px;
}

p {
  font-family: "exo 2";
  font-size: 22px;
}

ul {
  list-style-type: square;
}


.footer {
  padding: 10px;
  text-align: center;
  font-family: arial;
  font-size: 18px;
  background: #003366;
  color:#FFFFFF;
  position: static;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}