header {
    text-align: center;
    color: rgb(2, 2, 2);
  }
  
  h1
  {
      text-align: center;
      color: rgb(249, 248, 248);
  }
  h3{
      color:white;
      text-align: center;
      font-size: large;
  }
  
  p{
      text-align: center;
      color: white;
      font-size: medium;
  }
  nav {
      float: middle;
      width: 30%;
      background: black;
      
    }
  
    body {
      background-color: black;
      float: middle;
    }
  
    form{
      color: white;
      text-align: center;
      float: middle;
      flex-direction: column;
      padding:2vw 4vw;
      width: 10%;
  
    }
    .container {
      width: 100%;
      display:flex;
      align-items: center;
      justify-content: center;
      
    }
    
    /* Style the tab */
  .tab {
      overflow: hidden;
      border: none;
      background-color: black;
      text-align: center;
      
    }
    
    /* Style the buttons inside the tab */
    .tab button {
      background-color: inherit;
      float: middle;
      border: none;
      outline: none;
      cursor: pointer;
      padding: 14px 16px;
      transition: 0.3s;
      font-size: 17px;
      color: white;
    
     
    }
    
    .tab button:hover {
      background-color: #ddd;
    }
    
    .tab button.active {
      background-color: #ccc;
    }
    
    /* Style the tab content */
    .tabcontent {
      display: none;
      border: none;
      border-top: none;
    }
    .contact-form {
      align-content: center;
       border-top: none;
      justify-content: center;
      background-color: white;
      padding: 10px;
      border-radius: 1px;
      box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
      width: 200px;
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      background-color: black;
    }
  
    .contact-form label,
    .contact-form input,
    .contact-form textarea,
    .contact-form button {
      display: block;
      justify-content: center;
      float:middle;
      margin-bottom: 10px;
      width: 500px;
      align-items: center;
    }
  
    .contact-form button {
      background-color: #007bff;
      color: #fff;
      border: none;
      padding: 10px;
      border-radius: 5px;
      cursor: pointer;
    }