@font-face {
    font-family: 'ptnr';
    src: url('fonts/pixelated-times-new-roman.otf');
}

* {
    user-select: none;
    cursor: url('cursors/cursor.cur'), default;
}

body {
    background-color: rgb(27, 27, 27);
    color: white;
    margin: 0;
    display: flex;
    height: 100vh;
    align-items: center;
    position: relative;
    overflow: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url('bg.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 1.5s ease;
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

body.loaded::before {
    opacity: 1;
}

main {
    margin-left: 16px;
    margin-right: 16px;
}

@media only screen and (min-width: 600px) {
    main {
        margin-left: 12%;
        margin-right: 12%;
    }
}

h1 {
    font-weight: normal;
    margin-bottom: 0;
    font-family: 'ptnr';
    font-size: 100px;
}

a {
    display: inline-block;
    color: inherit;
    text-decoration: underline;
    transition: font-size 0.3s ease;
    line-height: 20px;
}

a:hover {
    cursor: url('cursors/pointer.cur'), pointer;
    font-size: large;
    text-decoration: underline;
    line-height: 20px;
}

p {
    margin-top: 0;
    margin-bottom: 12px;
    line-height: 24px;
}

.leader {
    margin: 0;
}

.tooltip {
    background-color: rgba(27, 27, 27, 0.7);
    position: absolute;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.1s;
    white-space: nowrap;
}

.note {
    color: rgb(156, 156, 156);
}