html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  background-image: url("media/img/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.logo {
  max-width: 80%;
  height: auto;
}

.caption {
  font-family: "Solitreo", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 40px;
  margin-top: 8px;
  margin-bottom: 12px;
  text-align: center;
  color: #ffffff;
}

.play-button {
  display: flex;
  padding: 10px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 64px;
  background: #FFF;
  color: #7E3DBF;
  border: none;
  font-size: 20px;
  font-weight: 600;
  box-shadow: -8px -7px 5px 0 #7E3DBF;
  transition: 0.1s;
}

.play-button:hover {
  cursor: pointer;
  transform: scale(1.05);
};