@font-face {
    font-family: 'Pressura';
    src: url('../Pressura-Extended-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Pressura';
    src: url('../Pressura-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'PixelTimes';
    src: url('../pixelated-times-new-roman.otf.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

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

body {
    font-family: 'PixelTimes', monospace;
    background: #fff;
    color: #000;
    overflow: hidden;
    transition: filter 0.3s ease;
}

#page-container {
    min-height: 100vh;
    position: relative;
}

.hidden {
    display: none !important;
}



.letter,
.core-letter,
.nav-link {
    cursor: pointer;
    transition: transform 0.1s ease;
}

.letter:hover,
.core-letter:hover,
.nav-link:hover {
    transform: scale(1.05);
}

.letter:active,
.core-letter:active,
.nav-link:active {
    transform: scale(0.95);
}
