@font-face {
    font-family: 'Impact';
    src: url('https://file.garden/YhDZAMkshFKY8jkE/Raworld%20-%20Remaster/Fonts/impact.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Comic Sans MS';
    src: url('https://file.garden/YhDZAMkshFKY8jkE/Raworld%20-%20Remaster/Fonts/Comic%20Sans%20MS.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'CourierPrimeCustom';
    src: url('https://file.garden/YhDZAMkshFKY8jkE/Raworld%20-%20Remaster/Fonts/CourierPrime-Regular.ttf') format('truetype');
}

body {
    margin: 0;
    background: white;
}


.nf-wrapper {
    height: 100dvh; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.nf-container {
    padding: clamp(20px, 5vw, 60px);
}


.nf-container {
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.nf-title {
    font-family: Impact, sans-serif;

    font-size: clamp(2.5rem, 6vw, 3.5rem);

    color: white;
    animation: fadeToBlack 2s ease forwards;
}


@keyframes fadeToBlack {
    from { color: white; }
    to { color: #b5b5b5; }
}

.nf-text {
    margin-top: clamp(20px, 4vw, 40px);

    font-family: 'CourierPrimeCustom', monospace;
    font-weight: bold;

    font-size: clamp(0.9rem, 2.5vw, 1.2rem);

    color: black;

    line-height: 1.6;
    min-height: 1.5em;
}

.nf-text img {
    max-width: 100%;
    height: auto;
}

.nf-text a {
    color: black;
    text-decoration: underline;
    font-weight: bold;
}