html {
  height: 100%;
  margin: auto;
  padding: 0;
}


body {
  height: 100%;
  margin: 0;
  padding: 0px 30px;
  font-family: "SF Pro Display","SF Pro Icons","Helvetica Neue","Helvetica","Arial",sans-serif;
  background-color:black;
  -webkit-font-smoothing: antialiased;
  direction: ltr;
  text-align: left;
  font-size: 17px;
}

.kode-mono-h1 {
  width: 100%;
  font-size: 72px;
  color: white;
  font-family: "Kode Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.highlight-h2 {
  font-family: "Archivo Black", sans-serif;
  font-family: "Roboto Mono", monospace;
  font-size: 50px;
  font-weight: 700;
  font-style: normal;
  color:lightseagreen
}

a .highlight {
  color: lightseagreen;
  background-color: black;
}

a, p {
  font-family: "Roboto Mono", monospace;
  font-size: 32px;
  font-weight: 600;
  font-style: normal;
  color: white;
  text-decoration: none;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

@property --angle{
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.card {
  display: flex;
  justify-content: center;
  align-items: center;
  
  margin: auto auto;
  padding: 2em;
  width: 400px;
  height: 400px;
  background-color: rgb(23, 23, 23);
  text-align: center;
  border-radius: 10px;
  position: relative;
}

.card::after, .card::before{
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: conic-gradient(from var(--angle), #ff4545, #00ff99, #006aff,#ff0095,#ff4545);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  padding: 5px;
  border-radius: 10px;
  animation: 3s spin linear infinite;
}

.card::before{
  filter: blur(1.5rem);
  /* opacity: 0.5; */
}

@keyframes spin {
  from {
    --angle: 0deg;
  }
  to {
    --angle: 360deg;
  }
}





/*ANIMATIONS*/

/* Define the keyframes for the fade-in effect */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Apply the fade-in animation to the element */
.fade-in {
  opacity: 0; /* Make the element initially invisible */
  animation: fadeIn 1s ease-in-out 0.25s forwards; /* 2s duration, 1s delay */
}