.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    background-color: hsl(0, 0%, 56%);
    padding: 0 20px;
    border-bottom: 4px solid rgb(105, 105, 105);
    box-shadow: 4px 4px 0px rgb(105, 105, 105);
    v
  }
  
  #sig {
    padding: 5px;
    width: 150px;
  }
  
  ul {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0;
  }
  
  ul li {
    border: 1px solid #727272; 
    padding: 20px;
    margin-left: 8px;
    margin-top: 8px;
    margin-bottom: 8px;
    background-color: #c9c9c9; 
  }
  
  ul li a {
    display: block;
    color: #000000;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  ul li a:hover {
    background-color: #ffffff;
  }

  body {
    background-color: #d6d6d6; /* classic retro teal */
    font-family: "Courier New", monospace;
    color: #727272;
}

.container {
    width: 600px;
    margin: 40px auto;
    background: #c0c0c0; /* old Windows gray */
    border: 4px solid #727272;
    padding: 20px;
    box-shadow: 6px 6px 0px #727272;
}

h1 {
    text-align: center;
    background: navy;
    color: white;
    padding: 10px;
}

.contact-info {
    background: #e0e0e0;
    padding: 10px;
    border: 2px dashed #727272;
    margin-bottom: 20px;
}

.required-note {
    font-size: 14px;
    margin-bottom: 10px;
}

label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

input, textarea, select {
    width: 100%;
    padding: 6px;
    margin-top: 3px;
    border: 2px inset #888;
    font-family: "Courier New", monospace;
}

.radio-group {
    margin-top: 5px;
}

.radio-group label {
    font-weight: normal;
    display: block;
}

textarea {
    height: 100px;
}

.buttons {
    text-align: center;
    margin-top: 20px;
}

button {
    font-family: "Courier New", monospace;
    padding: 8px 16px;
    margin: 5px;
    background: silver;
    border: 3px outset #999;
    cursor: pointer;
}

button:active {
    border: 3px inset #999;
}

.required {
    color: red;
}

.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);
}