body {
  background: url('bg2.png') no-repeat center center fixed;
  background-size: cover;
  margin: 0;
  height: 100vh;
}

.buttons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.button {
  margin: 20px;
}

.button img {
  width: 200px;
  height: auto;
  box-shadow: 1px 12px 12px rgba(0, 0, 0, 4.8);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.button img:hover {
  transform: scale(1.05);
}

.button img:first-child {
  width: 350px;
}
