* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    display: none;
}

html {
    scrollbar-width: none;
}

body {
    user-select: none;
    -ms-overflow-style: none;
    background-color: hsl(220, 13%, 6%);
    color: hsl(0, 0%, 94%);
    font-family: monospace;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 2600ms forwards;
}

a {
    color: unset;
    text-decoration: none;
}

.blinking-cursor {
    display: inline-block;
    animation: blink 2200ms step-end infinite;
}

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

@keyframes type {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}