@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --bg: #f8f8f8;
    --padding: #fafaeb;
    --text: #000000;
    --shadow: #0000004d;
    --border: #251611;
}

body.dark-theme {
    --bg: #141414;
    --text: #ffffff;
    --shadow: #0000004d;
    --padding: #fafaeb;
    --border: #492d23;
}

body {
    background-color: var(--bg);
    color: var(--text);
    transition: background-color 0.3s ease, color 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
}

.header {
    text-align: center;
    font-size: 1.875rem;
    margin: 2rem;
    letter-spacing: 0.125rem;
    color: var(--text);
    transition: all 0.3s ease;
    text-shadow: 0 0.25rem 1.25rem var(--shadow);
}

.header:hover {
    letter-spacing: 0.625rem;
}

.options {
    display: flex;
    justify-content: center;
    list-style: none;
}

.options li {
    letter-spacing: 0.125rem;
    margin: 0rem 2% 2%;
    transition: all 0.3s ease;
}

@media (max-width: 60rem) {
    .options li {
        margin-bottom: 10%;
    }
}

.options li:hover {
    letter-spacing: 0.313rem;
}

.options li a {
    text-decoration: none;
    color: inherit;
}

.options li button {
    letter-spacing: 0.125rem;
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    padding: 0;
    transition: all 0.3s ease;
}

.options li button:hover {
    letter-spacing: 0.313rem;
}

.section1 {
    display: flex;
    flex-direction: row;
    margin: 1rem auto;
}

@media (max-width: 60rem) {
    .section1 {
        flex-direction: column;
    }
}

.artwork1,
.artwork2,
.artwork3 {
    margin: 0 auto;
}


.art {
    background-color: var(--padding);
    margin: 0 auto;
    padding: 1.25rem;
    box-shadow: inset 0 0 0.625rem var(--shadow);
    border: 0.938rem solid var(--border);
    border-radius: 2%;
    transition: all 0.3s ease;
}

.art:hover {
    transform: scale(1.1);
}

.desc {
    margin: 10% 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 0.938rem;
    letter-spacing: 0.125rem;
    transition: all 0.3s ease;
    line-height: 1.8rem;
    text-shadow: 0 0.25rem 1.25rem var(--shadow);
}

.desc:hover {
    letter-spacing: 0.313rem;
}

.art:hover+.desc {
    letter-spacing: 0.313rem;
}