:root {
    --background-color: #0c0c0c; /* Deep off-black to reduce eye strain */
    --font-color: #eeeeee; /* Soft off-white for crisp readability */
    --default-line-height: 1.5;
    --section-padding: 4rem;
    --title-font-size: 9rem;
}

.press-start-2p-regular {
    font-family: "Press Start 2P", system-ui;
    font-weight: 400;
    font-style: normal;
}

body,
html {
    background: var(--background-color);
    color: var(--font-color);
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: "Press Start 2P";
    line-height: var(--default-line-height);
}

/* Title block */
.title-block {
    text-align: center;
}

.itch-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: "VT323", monospace;
    font-size: 1.2rem;
    /* Soft gray that brightens on hover */
    color: rgba(238, 238, 238, 0.4);
    text-decoration: none;
    transition: color 0.2s;
}

.itch-link:hover {
    color: rgba(238, 238, 238, 1);
}

.itch-logo {
    height: 1.2em;
    opacity: 0.4;
    transition: opacity 0.2s;
}

.itch-link:hover .itch-logo {
    opacity: 1;
}

/* Layout */
.layout {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    grid-template-columns: 5fr 250px;
}
