@import url("https://fonts.googleapis.com/css2?family=BioRhyme:wght@200;400;700&family=IM+Fell+English+SC&family=Rancho&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "BioRhyme";
}
body {
  min-height: 100vh;
  background-color: blueviolet;
}
.container {
  width: 100%;
  height: 100%;
  background-color: black;
  position: relative;
}
.container video {
  height: 100vh;
  width: 100%;
  background-position: absolute;
  object-fit: cover;
}
.container .artista {
  font-size: 50px;
  text-decoration: none;
  color: aliceblue;
  background-color: rgba(240, 248, 255, 0);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper {
  position: fixed;
  bottom: 50px;
  right: -370px;
  background-color: red;
  max-width: 345px;
  width: 100%;
  border-radius: 8px;
  padding: 15px 25px 22px;
  transition: right 0.3s ease;
}
.wrapper.show {
  right: 20px;
}