/* Body */
body {
    background-color: #111;
    color: #eee;
    font-family: Arial, sans-serif;
  }
  
  /* Header */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #222;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
  }
  
  header h1 {
    margin: 0;
  }
  
  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
  }
  
  nav ul li {
    margin-right: 20px;
  }
  
  video{
    border-radius: 30px;
    width: 100%;
  }

  nav ul li a {
    color: #eee;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  nav ul li a:hover {
    color: #fff;
  }
  
  /* Main */
  main {
    margin-top: 100px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  article {
    background-color: #222;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    padding: 20px;
    max-width: 800px;
  }
  
  article h2 {
    margin-top: 0;
  }
  
  .byline {
    font-style: i;
    margin-bottom: 1px;
  }
  
  img {
    width: 100%;
    margin-bottom: 20px;
  }
  
  p {
    line-height: 1.5;
  }
  
  /* Footer */
  footer {
    background-color: #222;
    padding: 10px;
    text-align: center;
    margin-top: 20px;
  }
  
  footer p {
    margin: 0;
  }
  