@font-face {
    font-family: 'HorrorFont';
    src: url('../fonts/HorrorFont-Regular.ttf') format('opentype');
}

@media (max-width: 600px) {
    h1 {
        font-size: 50px;
    }

    nav {
        flex-direction: column;
    }
}

html {
    scrollbar-width: none;
}

body {
    font-family: 'HorrorFont';
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 813px;
    justify-content: center;
    background-image: url('/images/bg.png');
    background-size: cover;
}

body::-webkit-scrollbar {
    display: none;
}

::selection {
    background: #ffffff52;
    color: #ffffffa4;
}

h1 {
    font-size: 100px;
    color: #ced0ca;
}

nav {
    display: flex;
    gap: 50px;
    background-color: #000000;
}

nav a {
    color: #969696;
    text-decoration: underline;
    font-size: 25px;
}

nav a:hover {
    color: #474747;
    font-size: 30px;
}

.internal-page-switch {
    color: rgb(92, 48, 105);
}

.internal-page-switch:hover {
    color: #501357;
}