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

body{
  overflow:hidden;
  font-family:Arial, Helvetica, sans-serif;
  background:black;
  color:white;
}

#bgvid{
  position:fixed;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:-2;
  filter:blur(1px);
}

.overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
  z-index:-1;
}

.content{
  height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:20px;
}

h1{
  font-size:4rem;
  font-weight:700;
  letter-spacing:2px;
}

p{
  margin-top:10px;
  opacity:.8;
  font-size:1.1rem;
}

.links{
  margin-top:30px;
  display:flex;
  gap:20px;
}

.links a{
  color:white;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.2);
  padding:10px 18px;
  border-radius:999px;
  backdrop-filter:blur(10px);
  background:rgba(255,255,255,.05);
  transition:.2s;
}

.links a:hover{
  background:rgba(255,255,255,.15);
}

.spotify{
  position:fixed;
  bottom:20px;
  left:20px;

  opacity:.85;

  backdrop-filter:blur(10px);

  z-index:10;
}