* {
  touch-action: manipulation;
}

body {
  background: url("./assets/background.jpg") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  color: #fff;
  font-family: sans-serif;
  font-size: 2em;
  text-align: center;
  overflow-x: hidden;
  overflow-y: hidden;
}

.home {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.logo {
  width: 550px;
  height: auto;
  margin-top: 5rem;
  animation: logo 3s linear infinite;
}

.play-btn {
  margin-top: 10rem;
  z-index: 10;
  transition: 0.2s ease-in-out 0s;
}
.play-btn:hover {
  cursor: pointer;
  transform: translateY(10px);
  color: #000;
}

@keyframes logo {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}

@media all and (max-width: 800px) {
  .logo {
    width: 350px;
  }
  .img-btn {
    width: 125px;
    height: auto;
  }
}
