@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');

@import url('https://fonts.googleapis.com/css2?family=Jersey+10&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;
    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: #c9c9c9; 
  }
  
  ul li a {
    display: block;
    color: #3a3939;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  ul li a:hover {
    background-color: #ffffff;
  }

  .container {

    display: flex;
    gap: 30px;
    align-items: flex-start;
  }
  
  .boxi {
    background-image: url("../image/wood2.jpg");
    border: 5px solid rgb(255, 208, 0);
    border-radius: 4px;
    width: 800px; 
  }

  
  .boxi img {
    width: 100%;
    display: block;
  }
  
  
  .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: 5px solid rgb(255, 208, 0);
    border-radius: 4px;
    padding: 20px;
    background-image: url("../image/gold.jpg");
    background-color: rgb(255, 208, 0);
    width:600px; 
    height: 500px;
    color: #000000;
    font-family: 'Roboto';
    font-size: 50px;
  }

  h1{
    font-family: 'Jersey 10';
    font-size: 100px;
    color:rgb(255, 208, 0) ;
    }

    .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);
    }