/**
 *
 * (C) 2025 Mad Hatters Cybersecurity Club
 *
 **/

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #1a1a1a;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.presents {
    color: #808080;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.presents::before,
.presents::after {
    content: "";
    height: 1px;
    width: 3rem;
    background: #808080;
}

.divider {
    display: block;
    width: 80%;
    margin: 2rem auto;
    height: 3px;
    background: linear-gradient(
        45deg,
        #ff3366,
        #ba265d,
        #5b3cc4,
        #3d84a8,
        #46c2cb
    );
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 20%,
        black 80%,
        transparent
    );
    mask-image: linear-gradient(
        to right,
        transparent,
        black 20%,
        black 80%,
        transparent
    );
}

.main-content {
    text-align: center;
    animation: fadeIn 0.8s ease-in forwards;
    animation-delay: 0.25s;
    opacity: 0;
}

h1 {
    font-size: 8rem;
    font-weight: 500;
    font-family: "Handjet", serif;
    font-optical-sizing: auto;
    font-variation-settings:
      "ELGR" 1,
      "ELSH" 2;
    margin: 0;
    padding: 0;
    background: linear-gradient(
        45deg,
        #ff3366,
        #ba265d,
        #5b3cc4,
        #3d84a8,
        #46c2cb
    );
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradient 15s ease infinite;
}

.subtext {
    color: #808080;
    font-size: 1.2rem;
    margin-top: 1rem;
}

code {
    color: #306c87;
    font-size: 1rem;
    background-color: #282c34;
    padding: 0.2rem 0.4rem;
    border: 1px solid #306c87;
    border-radius: 4px;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 1rem;
    color: #808080;
    font-size: 0.9rem;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
