* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
    margin: 0;
    padding: 0px;
    position: relative;
  
  }
  
  h1 { 
    color:#624C0B;
    padding: 10px 0px;
    text-align: center;
  }
  
  p {
    margin-bottom: 10px;
    color: #666;
  }
  
  
  form {
    max-width: 400px;
    margin: 0 auto;
  }
  
  label {
    display: block;
    margin-bottom: 10px;
  }
  
  input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  label {
    color: #555;
  }
  
  input[type="text"], input[type="email"], input[type="password"] {
    background-color: #f8f8f8;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 12px;
    font-size: 16px;
    color: #333;
  }
  
  .btn{
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  header {
    background-color: black;
    padding: 20px;
  }
  
  nav ul {
    list-style-type: none;
  }
  
  nav li {
    display: inline;
    margin-right: 10px;
    padding: 0px 0px 20px 0px;
  }
  
  nav a {
    text-decoration: none;
    color: white;
    padding: 5px;  
    font-weight: bold;
    font-size: 18px;
  }
  
  nav a:hover { color: #efba18;}
  
  .article{
    margin-bottom: 20px;
  }
  
  table{
    margin: 20px 0px;
    margin-left: auto;
    margin-right: auto;
  }
  
  table td {
      padding: 15px;
  }
  table thead td {
      background-color: #e9b419;
      color: black;
      font-weight: bold;
      font-size: 18px;
      border: 1px solid #54585d;
  }
  table tbody td {
      color: #636363;
      border: 1px solid #dddfe1;
  }
  
  table tbody td span{
    font-style: italic;
    padding-left: 40px;
  }
  
  table tbody tr {
      background-color: #f9fafb;
  }
  table tbody tr:nth-child(odd) {
      background-color: #ffffff;
  }
  
  .hero {
    background-image: url('../cover-photo.jpg');
    background-size: cover;
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-content {
    text-align: center;
    color: #fff;
  }
  
  .hero h1 {
    font-size: 50px;
    margin-bottom: 20px;
  }
  
  .logo{
    width: 40px;
  }
  
  .logo-style{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh; 
  }
  
    img {
      max-height: 70%;
    }
  
    .about{
      text-align: center;
      font-weight: bold;
    }
  
    .video{
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    footer {
    background-color: #f5f5f5;
    padding: 20px;
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
    color: #888;
  }
