
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  

  body {
      font-family: 'Comic Sans MS', 'Arial', sans-serif;
      background-color: #ffeef2;
      color: #4d4d4d;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100vh;
      margin: 0;
  }
  
 
  h1 {
      font-size: 2.8rem;
      color: #ff7b9c;
      text-shadow: 2px 2px 0px #ffb1c8;
      margin-bottom: 20px;
      text-align: center;
  }
  
  
  .links-container {
      display: flex;
      flex-direction: column;
      gap: 15px;
      width: 100%;
      max-width: 350px;
      text-align: center;
  }
  
  .links-container a {
      text-decoration: none;
      background-color: #ffb1c8;
      color: #fff;
      padding: 12px 18px;
      border-radius: 25px;
      font-size: 1.2rem;
      box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease-in-out;
  }
  
  
  .links-container a:hover {
      background-color: #ff7b9c;
      transform: scale(1.05);
      box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  }
  
 
  footer {
      margin-top: 30px;
      font-size: 0.9rem;
      color: #666;
  } 
  