*, *:before, *:after { box-sizing: border-box; }
html {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    /* font-family: Courier, 'Courier New', monospace; */
    color: #541313;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; 
    -webkit-text-size-adjust: none;
    font-size: 18px;
    background: #e2e1d9;
    margin: 40px;
}
header {
    margin: 0;
    max-width: 600px;
}
p {
    line-height: 28px;
}
main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
}
main aside div {
    margin-bottom: 40px;
}
main aside div p {
    margin-top: 0px;
}
main aside p, main aside h3 {
    font-size: 14px;
    line-height: 19px;
}
header h1 {
    font-family: 'STIX Two Text';
    font-size: 24px;
    margin: 0;
    margin-bottom: 8px;
}
body {
    margin: 0;
    padding: 0;
}
.box {
    border: 1px solid #541313;
    padding: 20px;
}
.inner {
    padding: 0 10px 20px 10px;
}
#about {
    margin-bottom: 30px;
}
details {
    border: 1px solid #541313;
    border: 0;
    margin-bottom: 15px;
    border: 1px solid #000;
    border-radius: 3px;
    background-color: #ffffff82;
}
details summary {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    cursor: pointer;
    padding: 10px;
}
details summary {
    padding: 10px;
}
details summary img {
    max-width: 30px;
    opacity: .3;
}
details summary:hover {
    background-color: #00000007;
}
details p:last-child {
    margin-bottom: 0;
}
h3 {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0;
}
img {
    max-width: 200px;
}
nav {
    border: 1px solid #000;
    padding: 20px;
}
nav {
    display: flex;
    justify-content: flex-start;
}
nav a {
    display: flex;
    width: 100%;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
nav a img {

}
nav a span {
    color: purple;
}


#glass-pane {
    width: 200px;
    height: 120px;
    border: 1px solid #541313;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.droplet {
    width: 10px;
    height: 10px;
    border: 1px solid #541313;
    border-radius: 50%;
    position: absolute;
}


@media(max-width: 1000px) {
    main {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}