body {
    margin-right: 20rem;
    margin-left: 20rem;
    background: #000000;
    color: #cacaca;
    font-family: Sans;
}

a:link, a:visited {
    color: #800080;
    text-decoration: none;
}

a:active {
    color: #cacaca;
    text-decoration: none;
}

a:hover {
    color: #800080;
    text-decoration: underline;
}

h1 {
    margin-top: 1rem;
    font-size: 5rem;
    text-align: center;
}

nav {
    position: fixed;
    top: 11.25rem;
    left: 14rem;
}

nav img {
    border-radius: 1rem;
    width: 5rem;
    height: auto;
}

article {
    border: 0.25rem solid #cacaca;
    border-radius: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

footer {
    margin-top: 1rem;
}

.screenshot {
    border: 0.1rem solid #cacaca;
    border-radius: 1rem;
    aspect-ratio: 16 / 9;
    width: 30rem;
    height: auto;
}

.image_fit {
    border: 0.1rem solid #cacaca;
    border-radius: 1rem;
    width: 30rem;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: scale-down;
    object-position: 2.25rem 0;
}

.top {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
}

@media screen and (width <= 1625px) {
    body {
        margin-right: 10rem;
        margin-left: 10rem;
    }

    h1 {
        font-size: 3rem;
    }
    nav {
        position: fixed;
        top: 7.25rem;
        left: 4.5rem;
    }
}