<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* style.css */

@font-face {
    font-family: Lato;
    src: url(./Assets/Fonts/Lato/Lato-Regular.ttf);
}

:root {
    --bg-color: #212f3c;
    --fg-color: #1a2530;
    --text-color: #f2f3f4;
    --link-color: #85c1e9;
    --link-hover: #48c9b0;
    --font-main: 'Lato', sans-serif;
/*     --main-width: 35%;
 */    --mobile-width: 90%;
    --space: 100px;
}

html, body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    font-size: 110%;
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

body {
    opacity: 0;
    transition: opacity 0.2s ease-in;
}

p {
    line-height: 1.4;
}

.project-detail p {
    text-align: justify;
}

.project-detail h2 {
    text-align: center;
}

.project-detail h2,
.project-detail h3,
.project-detail h4 {
    margin-top: 1.5rem;
    margin-bottom: -0.5rem;
}

em {
    font-style: inherit;
    color: var(--link-color);
}

.caption {
    margin-top: -0.1em;
    font-size: 0.7em;
    font-style: italic;
}

main {
    display: block;
    margin: 3% auto;
    width: var(--main-width);
    overflow-wrap: break-word;
    flex: 1;
}

.project-list h2 {
    text-align: center;
}

header {
    text-align: center;
    margin-bottom: 2rem;
}

.tagline {
    font-size: 1rem;
    font-style: italic;
    color: var(--link-color);
}

.intro {
    margin-bottom: 3rem;
    font-size: 1.1em;
}

.game-list h1 {
    text-align: center;
    margin-bottom: 1rem;
}

.game-card {
    display: flex;
    margin-bottom: 2rem;
}

footer {
    text-align: center;
    background-color: var(--fg-color);
    font-size: 0.9em;
    display: flex;
    justify-content: center;
    padding: 10px;
}

.footer-links, .footer-contact {
    flex: 1;
    margin: 0 20px;
    max-width: 20%;
}

footer h3 {
    margin-bottom: 0.5rem;
}

    footer p {
        margin: 0.5rem 0;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        flex-direction: row;
    }

    footer a {
        margin: 0 1rem;
    }

a:link,
a:visited {
    color: var(--link-color);
    background-color: transparent;
    text-decoration: none;
}

a:hover {
    color: var(--link-hover);
    text-decoration: underline;
}

/* iframe {
    border-radius: 12px;
    transition: all 0.25s ease;
} */

    /* iframe:hover {
        transform: scale(1.025);
    } */

.project-list {
    margin-top: 3rem;
    justify-content: center;
}

#project-container {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 0 5%;
    width: 90%;
    gap: 5rem;
    justify-content: center;
}

a.project-card {
    display: block; /* Ensure the &lt;a&gt; behaves like a block element */
    background-color: var(--fg-color); /* Apply the background color */
    width: 20em;
    text-align: center;
    transition: transform 0.2s ease;
    text-decoration: none; /* Remove underline from links */
    color: var(--text-color); /* Ensure text color matches your design */
}

a.project-card p{
    font-size: 0.75em;
}

a.project-card:hover {
    transform: scale(1.03);
}

a.project-card img {
    width: 100%;
    /* border-radius: 8px; */
}

a.invalid {
    opacity: 0.5;
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

.project-detail{
    width: min(100%, 960px);
    margin: 2em calc(calc(100% - width) / 2);
}

/* Responsive Design */
/* @media (max-width: 768px) {
    main {
        width: var(--mobile-width);
    }

    .game-card {
        flex-direction: column;
        align-items: center;
    }

    footer p {
        flex-direction: column;
        align-items: center;
    }

    footer a {
        margin: 0.3rem 0;
    }
} */
</pre></body></html>