body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #121212;
  font-family: Arial, sans-serif;
}

.container {
  display: flex;
  gap: 40px;
}

.g-button {
  width: 100px;
  height: 100px;
  background-color: #ffcc00;
  color: black;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  border-radius: 50% 50% 0 0;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}

.g-button:hover {
  transform: scale(1.1);
}
