/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
html, body {
  height: 100%;
  font-family: 'Orbitron', sans-serif;
  background: black;
  overflow: hidden;
}

/* VIDEO BACKGROUND */
video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  top: 0;
  left: 0;
  z-index: -1;
}

/* CONTENT */
.content {
  position: absolute;
  top: 68%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 90%;
  max-width: 420px;
  z-index: 3;
}

/* TEXT */
h1 {
  font-size: 36px;
  letter-spacing: 6px;
  margin-bottom: 20px;
}

/* SPOTIFY PLAYER */
iframe {
  width: 100%;
  height: 80px;
  border-radius: 10px;
  border: none;
  margin-bottom: 20px;
}

/* BUTTONY */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px;
  margin: 8px 0;

  border-radius: 8px;
  text-decoration: none;
  color: white;

  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);

  transition: all 0.3s ease;
}

/* IKONY */
.btn img {
  width: 18px;
  height: 18px;
}

/* HOVER */
.btn:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.05);
}

/* BRAND BORDERY */
.spotify { border: 1px solid #1DB954; }
.youtube { border: 1px solid #FF0000; }
.apple { border: 1px solid #ffffff; }

/* MOBILE */
@media (max-width: 768px) {
  .content {
    top: 72%;
  }

  h1 {
    font-size: 24px;
  }
}/* CSS Document */