* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #fdf6e4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .container {
    text-align: center;
  }
  
  h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 20px;
  }
  
  .btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #e07a5f;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 10px;
    transition: background-color 0.3s;
  }
  
  .btn:hover {
    background-color: #d35d6e;
  }