* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: black;
  color: white;
  text-align: center;
  font-family: Arial, sans-serif;
}
.container{
    background-image: url(http://twistedsifter.com/wp-content/uploads/2013/05/animated-gifs-of-fighting-game-backgrounds-36.gif);
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;

}

.fighter {
  position: absolute;
  height: 300px;
  bottom: 0;
}

.blanka {
  left: 100px;
}

.ken {
  right: 100px;
}

.buttons {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.buttons button {
  padding: 12px 24px;
  font-size: 20px;
  font-weight: bold;
  background: linear-gradient(135deg, #1fddff, #1fa2ff);
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.buttons button:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #1fa2ff, #12d8fa);
  box-shadow: 0 6px 12px rgba(0, 255, 255, 0.6);
}

.result {
  display: none;
  font-size: 24px;
  padding: 10px;
  background-color: green;
  margin-top: 20px;
}
