/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: tan;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .container {
    text-align: center;
    max-width: 600px;
    padding: 20px;
    background: rgb(192, 148, 91);
    border-radius: 8px;
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  h1 {
    margin-bottom: 10px;
    color: #000000;
  }
  
  p {
    margin-bottom: 20px;
    color: #363636;
  }
  
  .video-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .video video {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  