@import url('https://fonts.googleapis.com/css2?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/wall.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;
  }
  
  #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: #c9c9c9; 
  }
  
  ul li a {
    display: block;
    color: #3a3939;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  ul li a:hover {
    background-color: #ffffff;
  }

  .caption {
    text-align: center;
    padding: 20px;
    background-image: url("../../image/gold.jpg");
    background-color:rgb(255, 208, 0);
    font-size: 30px;
    font-family: 'Roboto';
  }
  
  .caption a:hover {
    text-decoration: underline;
  }
  
  .textbox {
    border-radius: 4px;
    padding: 20px;
    background-image: url("../../image/gold.jpg");
    background-color: rgb(255, 208, 0);
 
    color: #000000;
    font-family: 'Roboto';
    font-size: 50px;
  }

  .textbox2 {
    border-radius: 4px;
    padding: 20px;
    background-image: url("../../image/wood2.jpg");
    background-color: rgb(255, 208, 0);
    color: #ffffff;
    
    font-family: 'Roboto';
    font-size: 50px;
    width:200px; 
  height: 100px;
  }

  
.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.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);
}