body 
{
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
}

.button-container 
{
  display: flex;
  gap: 50px;
  align-items: center;
}

.button 
{
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button img 
{
  max-width: 100%;
  max-height: 100%;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.button:hover img 
{
  transform: scale(1.2);
}
