*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  .profile-pic {
    width: 200px;  
    height: 200px;
    border-radius: 50%; 
    display: block;
    margin: 20px auto;
  }

  .dbs-pic {
    width: 200px; 
    height: 200px;
    display: block;
    margin: 20px auto;
  }

  body {
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #606060;
  }
  
  
  header {
    background: #ababab;
    color: white;
    padding: 20px 0;
    text-align: center;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    background: #4a4a4a;
    padding: 10px;
  }
  
  nav ul li {
    margin: 0 15px;
  }
  
  nav ul li a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 18px;
  }
  
  nav ul li a:hover {
    text-decoration: underline;
  }
  

  main {
    max-width: 800px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  h1, h2, h3 {
    color: #383838;
  }
  
  img {
    display: block;
    margin: 10px auto;
    max-width: 100%;
    border-radius: 5px;
  }
  
  
  table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
  }
  
  table th, table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
  }
  
  table th {
    background: #333;
    color: white;
  }
  
  
  form {
    display: flex;
    flex-direction: column;
  }
  
  form label {
    margin-top: 10px;
  }
  
  form input, form textarea, form button {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  
  form button {
    background: #333;
    color: white;
    cursor: pointer;
    font-size: 16px;
  }
  
  form button:hover {
    background: #555;
  }
  
  
  footer {
    text-align: center;
    background: #333;
    color: white;
    padding: 10px;
    margin-top: 20px;
  }

  .menu-intro {
    text-align: center;
    margin-top: 20px;
  }

  .menu-options {
    text-align: center;
    margin: 20px;
  }

  .menu-options ul {
    list-style: none;
    padding: 0;
  }

  .menu-options li {
    margin: 10px 0;
  }

  .menu-options a {
    text-decoration: none;
    font-size: 18px;
    color: #444;
    font-weight: bold;
  }

  .menu-options a:hover {
    color: #007bff;
  }
