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

body {
    background: white;
    color: black;
    font-family: "courier new", monospace;
    display: flex;
    justify-content: center;
    padding: 80px 20px;
    transition: background .1s, color .2s;
    }

    .container {
        width: 550px;
        max-width: 100%;
    }

    .logo {
        width: 120px;
        margin-bottom: 16px;
        transition: transform .2s;
        cursor: pointer;
    }

    .logo:hover {
        transform: rotate(-4deg);
    }

    .title {
        font-size: 25px;
        padding: 6px 10px;
        margin-bottom: 24px;
    }

    .description {
        margin-bottom: 28px;
        font-size: 15.2px;
    }

    .links {
        font-size: 15.2px;
    }

    .links h2 {
        margin-bottom: 20px;
        font-size: 19px;
    }

    .link-item {
        margin-bottom: 14px;
    }

    .link-item a {
        color: black;
        font-weight: bold;
        text-decoration: underline;
    }

    .link-item a:hover {
        background: black;
        color: white;
    }

    .footer {
        margin-top: 60px;
        padding-top: 16px;
        font-size: 11px;
        letter-spacing: 1px;
        opacity: 0.4;
        line-height: 1.8;
    }

    ::selection {
        background: black;
        color: white;
    }

    body.tore {
        background: black;
        color: white;
    }

    body.tore a {
        color: white;
    }

    body.tore .link-item a:hover {
        background: white;
        color: black;
    }

    body.tore .logo {
        filter: invert(1);
    }

    body.tore ::selection {
        background: white;
        color: black;
    }
