
body, html {
    /*width: 100%;
    height: 100%;*/
    font-family: 'Poppins', Arial, sans-serif;
	background: #212534;
	}

#content {
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Vídeo de fundo */
#videoBackground {
	
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Thumbnail no canto superior esquerdo */
#thumbnail {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100px;
    height: 100px;
    border: 2px solid white;
}


@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

:root {
  --clr-1: #160a43;
  --clr-2: #3f0ef7;
  --clr-3: #160a43;
  --clr-4: #3312af;
  --clr-5: #160a43;
  --xlr-2: #0400b7;
  --xlr-3: #ffffff;
  --xlr-4: #0400b7;
  
}

.card2 {
  height: 6vh;
  width: 16vh;
  aspect-ratio: 1 / 1.5;
  background: linear-gradient(#000000, #0400b7, #000000);
  border-radius: 0.5rem;
  position: absolute;
  bottom: 15%; /* Ajuste essa margem se necessário */
  left: 50%;
  transform: translateX(-50%);
  color: white;
  cursor: pointer;
  font-family: 'Poppins';
  font-weight: 700;
  font-style: italic;
  font-size: 1.2em;
}

.card {
  height: 6vh;
  width: 16vh;
  aspect-ratio: 1 / 1.5;
  background: var(--clr-1);
  border-radius: 0.5rem;
  position: absolute;
  bottom: 15%; /* Ajuste essa margem se necessário */
  left: 50%;
  transform: translateX(-50%);
  color: white;
  cursor: pointer;
  font-family: 'Poppins';
  font-weight: 700;
  font-style: italic;
  font-size: larger;
}

.card::before,
.card::after {
  content: "";
  position: absolute;
  inset: -0.1rem;
  z-index: -1;
  background: conic-gradient(
    from var(--gradient-angle),
    var(--xlr-2),
    var(--xlr-3),
    var(--xlr-4)
	
    
  );
  border-radius: inherit;
  animation: rotation 3s linear infinite;
}

.card::after {
  filter: blur(0.5rem);
}

@keyframes rotation {
  0% {
    --gradient-angle: 0deg;
  }
  100% {
    --gradient-angle: 360deg;
  }
}
