/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

body, html {
  height: 100%;
  font-family: Arial, sans-serif;
}

.container {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background-color: #f4f4f4;
}

.box {
  width: 80%;
  max-width: 300px;
  text-align: center;
  padding: 20px;
  font-size: 24px;
  color: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ggs {
  background-color: #007bff;
}

.whp {
  background-color: #28a745;
}

.box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* Responsive design for mobile devices */
@media (max-width: 600px) {
  .box {
    width: 90%;
  }
}
