@font-face {
  font-family: "Lexend Deca";
  src: url("/fonts/LexendDeca-VariableFont_wght.ttf") format("truetype");
}

@font-face {
  font-family: "Yusei Magic";
  src: url("/fonts/YuseiMagic-Regular.ttf") format("truetype");
}

body {
    color: #e0e0e0;
    background-color: #0d0a09;
    font-family: "Yusei Magic";
    font-size: 1.25em;
    background-image: url(background.png);
    background-size: 3em;
}

a {
    color: #FF7900;
}

.title {
    height: 1.5em;
    overflow-y: visible;
    color: #ffcc00;
    background-image: linear-gradient(45deg, #ffcc00 , #FF4D00 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-size: 3em;
    font-weight: 900;
    margin-bottom: 0;
}

.title span {
    display: inline-block;
}

.content {
    width: 40%;
    margin: auto
}

@media (max-width: 768px) {
    .content {
        width: 90%;
    }
}

.nc {
    transition: all 0.3s cubic-bezier(.17,.67,0,1.77);
    border-radius: 10px;
    outline: solid 2px;
    outline-color: transparent;
    outline-offset: 0;
    display: block;
    margin: auto;
}

.nc:hover{
    outline-color: white;
    outline-offset: 0.5em;
    transform: scale(1.05);
}

.nc:active {
    outline-color: transparent;
    outline-offset: 0;
    transform: scale(0.75);
}

.blank {
    display: block;
}

table {
    border-collapse: collapse;
    width: 100%;
}

td, th {
    width: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.50);
    padding: 0.5em
}


@keyframes sparkle-keyframes {
    0% {
        transform: translateY(5px);
    }
    100% {
        transform: translateY(-5px);
    }
}

.sparkle {
    width: 1em;
    animation: sparkle-keyframes 2s infinite alternate-reverse ease-in-out;
}
