
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


body  {
  background-image: url("../image/paper.jpg");
  background-color: #cccccc;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between; /* pushes image left and nav right */
    background-color: #8f8f8f;
    padding: 0 20px;
    border-bottom: 4px solid rgb(105, 105, 105);
  box-shadow: 4px 4px 0px rgb(105, 105, 105);
  }
  
  #sig {
    padding: 5px;
    width: 150px;
  }
  
  ul {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0;
  }
  
  ul li {
    border: 1px solid #000000; 
    padding: 20px;
    margin-left: 8px;
    margin-top: 8px;
    margin-bottom: 8px;
    background-color: #ffffff; 
  }
  
  ul li a {
    display: block;
    color: #3a3939;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  ul li a:hover {
    background-color: #ffffff;
  }

 h1{
  font-family:"Roboto", sans-serif;
  background-color: #fbff11; 
  margin-left: 8px;
    margin-top: 8px;
    margin-bottom: 8px;
 }
 
  h2{
    font-family: 'Oswald';
    background-color: #fbff11; 
    margin-left: 8px;
    margin-top: 8px;
    margin-bottom: 8px;
  }

  h3{
    font-family: "Roboto Condensed", sans-serif;
    background-color: #fbff11; 
    margin-left: 8px;
    margin-top: 8px;
    margin-bottom: 8px;
  }

  p{
    background-color: #63f387; 
    margin-left: 8px;
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .footer {
    height:100px ;
    width:auto;
    background-color: #c9c9c9;
    color: white;
    font-family: 'Jersey 10';
    font-size: 50px;
    text-align: center;
    border-bottom: 4px solid rgb(105, 105, 105);
    box-shadow: 4px 4px 0px rgb(105, 105, 105);
  }