@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200&family=Ubuntu&display=swap");

body,
html {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    background: #ddffbd;
    color: #030401;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70%;
    margin: 0 auto;
    max-width: 100vw;
}

header {
    text-align: center;
    font-size: 3em;
    margin-bottom: 20px;
    font-family: "Ubuntu", sans-serif;
}

.content {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 12em;
}

.artwork {
    width: 70vh;
}

.description {
    text-align: left;
    font-size: 1.2em;
    font-weight: 300;
}

footer {
    text-align: center;
    font-size: 0.8em;
    position: fixed;
    bottom: 0.5em;
    width: 100%;
}

a,
a:link,
a:visited,
a:focus,
a:hover,
a:active {
    text-decoration: none;
    color: #030401;
}

/* Media Query for picture breakpoint */
@media only screen and (max-width: 1300px) {
    .content {
        gap: 9em;
    }
}
@media only screen and (max-width: 1200px) {
    .content {
        gap: 6em;
    }
}
@media only screen and (max-width: 1150px) {
    .content {
        gap: 3em;
    }
}
@media only screen and (max-width: 1100px) {
    .content {
        gap: 0.5em;
    }
}

/* Media Query for description breakpoint */
@media only screen and (max-width: 1000px) {
    .content {
        flex-direction: column;
        align-items: flex-start;
    }
    .description {
        padding: 0.5em;
    }
}

/* Media Query for Mobile */
@media only screen and (max-width: 786px) {
    header {
        font-size: 1.7em;
    }
    .container {
        width: 100%;
    }
    .content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1em;
    }
    .artwork {
        width: 100%;
    }
    .description {
        font-size: 0.9em;
        padding: 0.5em;
    }
    footer {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Media Query for Dark Mode */
@media (prefers-color-scheme: dark) {
    body,
    html {
        background: #141513;
        color: #eafcd9;
    }
    a,
    a:link,
    a:visited,
    a:focus,
    a:hover,
    a:active {
        text-decoration: none;
        color: #eafcd9;
    }
}
