@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
    background-color: #4597ef;
  }

  h1 {
    margin-bottom: 1.5rem;
  }

  .top-container {
      text-align: center;
      padding: 100px;
      margin-top: 50px;
      background-color: white;
      border-radius: 8px;
      box-shadow: 0 3px 6px rgba(0,0,0,0.13);
  }

  .button-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-height: 50vh;

  }

  .button {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .button:hover {
    background-color: #0056b3;
  }