body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    font-family: Arial, sans-serif;
  }
  
  h1 {
    margin-bottom: 20px;
  }
  
  button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #b32323;
    color: white;
    border: none;
    border-radius: 50PX;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #45a049;
  }
  