@import url('https://fonts.googleapis.com/css2?family=Azeret+Mono:ital,wght@0,100..900;1,100..900&family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Work+Sans:ital,wght@0,100..900;1,100..900&family=Xanh+Mono:ital@0;1&display=swap');

@font-face {
    font-family: 'Argent Pixel CF';
    src: url('assets/59173.ttf');
}

html, body {
    margin: 0;
    padding: 0;
    background: black;
    overflow: hidden;
    height: 100%;
    width: 100%;
    font-family: monospace;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
}

.overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    text-align: center;

    padding: 2em;
    border-radius: 1em;
    /* background: #00000080; */
    backdrop-filter: blur(1px);
    opacity: 0;
    animation: fadeIn 2s ease-out forwards;
}

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

.overlay h1 {
    font-family: "Argent Pixel CF";
    background: #48CAE4;
    background: linear-gradient(45deg,rgba(0, 180, 216, 1) 0%, rgba(144, 224, 239, 1) 50%, rgba(202, 240, 248, 1) 100%);
    background-clip: text;
    color: transparent;
    font-weight: normal;
    text-shadow: 0 0 0.25em #48CAE4aa, 0 0 0.5em #ade8f4aa;

    font-size: 4rem;
    margin: 0 0 1rem;
}

.overlay p {
    font-family: "IBM Plex Mono";
    font-size: 1.2rem;
    color: #eee;
}