* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #ffebcd;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
  }
  
  header {
    text-align: center;
    margin-bottom: 30px;
  }
  
  h1 {
    font-size: 2.5rem;
    color: #ff6347;
  }
  
  p {
    font-size: 1.2rem;
    color: #333;
  }
  
  nav ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  nav li {
    margin: 10px 0;
  }
  
  nav a {
    text-decoration: none;
    color: #ff6347;
    font-size: 1.5rem;
    padding: 10px 20px;
    border: 2px solid #ff6347;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  
  nav a:hover {
    background-color: #ff6347;
    color: #fff;
  }
  
  footer {
    margin-top: 50px;
    font-size: 1rem;
    color: #333;
  }