@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  background-color: #e2ebf0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  text-align: center;
  background: #ffffff;
  padding: 40px 50px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  max-width: 400px;
  width: 70%;
}


h1 {
  margin-bottom: 25px;
  font-weight: 600;
  font-size: 1.8rem;
  color: #333;
  letter-spacing: 0.5px;
  word-wrap: break-word; 
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
}

.buttons button {
  font-weight: 500;
  padding: 12px 20px;
  font-size: 15px;
  border: none;
  border-radius: 10px;
  background-color: #007bff;
  color: white;
  cursor: pointer;
  transition: all 0.5s ease;
  box-shadow: 0 3px 10px rgba(0,123,255,0.3);
}

.buttons button:hover {
  background: #004a9f;
  box-shadow: 0 5px 14px rgba(0,123,255,0.35);
  transform: translateY(-2px);
}

.buttons button:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(0,123,255,0.3);
}

footer {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
  color: #888;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
}

@media (max-width: 480px) {
  .container {
    padding: 30px 25px;
    margin: 20px auto; 
  }

  h1 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .buttons button {
    padding: 10px 15px;
    font-size: 14px;
  }
}