body {
    font-family: 'Georgia', serif;
    background: #fef9f4;
    text-align: center;
    padding: 50px;
    color: #333;
  }
  
  h1, h2, h3, p {
    font-family: 'Georgia', serif;
  }
  
  button, .styled-button, a.button-link {
    background-color: #666666;
    color: white;
    border: none;
    padding: 12px 24px;
    margin: 10px;
    font-size: 1em;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

button:hover, .styled-button:hover, a.button-link:hover {
    background-color: #f6a96b;
  }
  
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
  }
  
  .tile {
    background-color: #cfc9c4;
    padding: 40px;
    font-family: monospace;
  }
  
  video {
    max-width: 100%;
    height: auto;
  }
  
  footer img {
    height: 32px;
    margin-top: 60px;
    margin-bottom: 12px;
  }
  
  .about-section {
    font-family: monospace;
    font-size: 1.1em;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .prompt h2 {
    font-size: 1.4em;
    margin-top: 30px;
  }