@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');

body {
  font-family: "Roboto Mono", monospace;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    gap: 1rem;
    padding-left: 40px;
}

ul {
    list-style-type: none;
    padding: 0px;
}

img {
    max-width: 100%;
    height: auto;
}

.artwork-page-image-containers {
    display: flex;
    flex-direction: column;
}

@media only screen and (min-width: 768px) {
    body {
        max-width: 1200px;
        margin: 0 auto;
    }
    img {
        max-width: 50%;
        height: auto;
    }
}
