body {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.9)),
    url('./Img/photo-1519683109079-d5f539e1542f.jpg')
      no-repeat center/cover;
  --gradient: 1turn, rgba(255, 123, 0, 0.998), rgb(255, 238, 7);
  margin: 20px 0px 20px 0px;
  height: 100vh;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  overflow-y: hidden;
}

p {
  font-family: "Lato", Helvetica, Sans-serif;
  color: #999;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.keyboard {
  background: #111;
  width: 800px;
  height: 530px;
  z-index: 0;
  bottom: 10px;
  box-shadow: 0px 0px 25px 5px #111;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.keys {
  z-index: 1;
  display: flex;
}

.key {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  transition: all 0.1s;
}

.white {
  width: 90px;
  height: 330px;
  border: 0.5px solid #aaa;
  background-color: #fff;
}

.black {
  background-color: #222;
  width: 60px;
  height: 200px;
  z-index: 2;
  margin-left: -30px;
  margin-right: -30px;
}

.white.pressed {
  background-color: #ddd;
}

.black.pressed {
  background-color: #333;
}

.text {
  font-family: "Lato", sans-serif;
  z-index: 1;
  background: -webkit-linear-gradient(var(--gradient));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.2rem;
  position: relative;
  bottom: 80px;
  /* right: 230px; */
}

footer {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  margin-top: 10px;
  color: white;
}

a {
  text-decoration: none;
  display: inline-block;
  background: -webkit-linear-gradient(var(--gradient));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

a:hover {
  background: -webkit-linear-gradient(
    1turn,
    rgb(255, 238, 7),
    rgba(255, 123, 0, 0.998)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

span {
  display: inline-block;
  color: rgb(255, 124, 146);
  animation-name: latido;
  animation-iteration-count: infinite;
  animation-duration: 1s;
}

@keyframes latido {
  0% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1.4);
  }
}
