@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@600&family=Shippori+Antique+B1&display=swap");
/* @import url("https://fonts.googleapis.com/css2?family=B612&display=swap"); */

:root {
    --green-main: #356f73;
    --brown-main: #e0c0a7;
    --blue-pony: #57ace3;
    --orange-pony: #ffa55c;
    --dark-pony: #2f3237;
    --ponny-nice-font: "Shippori Antique B1", sans-serif;
    --ponny-font: "IBM Plex Sans", sans-serif;
    /* --ponny-font: "B612", sans-serif; */
}

body {
    background: var(--dark-pony);
    font-family: var(--ponny-font);
}

ul.menu{
    background-color: var(--orange-pony);
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

ul.menu li{
    margin-right: 10px;
}

.main {
    padding: 2em;
    color: var(--orange-pony);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bold-list {
    font-family: var(--ponny-nice-font);
    font-weight: bold;
}

footer {
    height: 3rem;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: var(--green-main);
    color: white;
    display: flex;
    justify-content: space-around;
    /* text-align: center; */
}

.social {
    padding-bottom: 3rem;
    text-align: center;
}

.social > ul {
    padding-inline-start: 0;
}

.social > ul > li {
    list-style-type: none;
    display: inline;
    margin: 1rem;
}

.social > ul > li > a {
    font-size: 1.5rem;
    color: black;
}

.social > ul > li > a:hover {
    color: grey;
}

.thumbnail {
    margin: 5px;
    background-color: black;
    width: 250px;
    height: 200px;
    display: inline-block; /* makes it fit in like an <img> */
    background-size: cover; /* or contain */
    background-position: center center;
    background-repeat: no-repeat;
}

#images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#contact > a {
    margin-top: 1rem;
    color: var(--blue-pony);
}

#music {
    display: flex;
    flex-direction: column;
}

#music > audio {
    margin-top: 1%;
}

#music > ol > li {
    color: var(--blue-pony);
}

#music > ol > li.selected {
    color: var(--orange-pony);
}

#music > ol > li:hover {
    cursor: pointer;
    color: var(--green-main);
}

.playerBtn {
    width: 2rem;
    margin: 0.2rem;
}

.more {
    color: var(--green-main);
}

/* BLOG */

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

#layout {
    padding: 0;
}

.header {
    text-align: center;
    top: auto;
    margin: 3em auto;
}

.content-subhead {
    text-transform: uppercase;
    color: #aaa;
    border-bottom: 1px solid #eee;
    padding: 0.4em 0;
    font-size: 80%;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.content {
    padding: 2em 1em 0;
}

.post {
    padding-bottom: 2em;
}
.post-title {
    font-size: 2em;
    color: #aaa;
    margin-bottom: 0.2em;
}
.post-description {
    color: #aaa;
    line-height: 1.8em;
}
.post-images {
    margin: 1em 0;
}
