/* * {
  border: 1px solid black;
}
*/

body {
    height: 100vh;
  }
  .container {
    width: 80%;
    margin: auto;
    overflow: hidden;
  }
  
  ul {
    margin: 0;
    padding: 0;
  }

  #header {
    background-color: rgb(4, 184, 255);
    border-bottom: 5px solid rgb(6, 0, 0);
  }
  
  #header a {
    color: white;
    text-decoration: none;
  }
  #header a:link {
    color: rgb(255, 255, 255);
    text-decoration: none;
  }
  #header a:active {
    color: black;
    text-decoration: none;
  }
  #header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  #header li {
    display: inline;
    padding: 0 20px;
    font-family: "Audiowide", sans-serif;
  }
  #branding {
    color: white;
    font-family: "Audiowide", sans-serif;
  }
  
  #spanColor {
    color: #0f0101;
  }
  #main {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)),
      url("/banner.jpeg");
    background-size: cover;
    text-align: center;
    color: white;
    height: 90vh;
  }
  
  #main h1 {
    font-size: 60px;
    margin: 200px 0 10px;
    font-family: "Audiowide", sans-serif;
  }
  
  #main p {
    font-size: 30px;
    font-family: "Audiowide", sans-serif;
  }
  
  #about, #contact {
    background-color: black;
    color: white;
  }
  #about h2, #contact h2 {
    font-size: 30px;
    font-family: "Audiowide", sans-serif;
    text-align: center;
    color: red;
  }
  
  #about p, #contact p {
    font-size: 20px;
    font-family: "Arial", sans-serif;
    padding: 0 10px;
  }
  
