:root{
    --background-color: #1A2E12;
    --text-color: #e0dedc;
    --link-color: #a87cc7;
    --link-color-dark: #402c51;
    --background-light: #f0eded;
}
/* #705c82 */
body{
    font-size: 16px;
    font-family: 'Courier New', Courier, monospace;
    background-image: url('/img/backgrounds/stained-glass-seamless.jpg');
    background-size: 300px;
    color: var(--text-color);
}
.wrapper{
    background-color: var(--background-color);
    padding: 1rem;
    display: flex;
    flex-direction: row;
    padding: 0;
}
hr{
    margin: 1rem 0;
}
#content{
    padding: 10px;
    width: 100%;
}
a{
    color: var(--link-color);
}
#back a{
    background-color: var(--text-color);
    color: var(--background-color);
}
header{
    width: 100%;
    height: fit-content;
    border-bottom: solid 1px var(--text-color);
    background-color: var(--background-color);
    padding: 1rem;
}
h1{
    font-size: 32px;
}
h2{
    font-size: 24px;
    margin-bottom: 0.5rem;
}
h3{
    font-size: 18px;
}
.flex-row{
    display: flex;
    flex-direction: row;
}
li{
    list-style: none;
}
#inspiration ul{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.joryn-blinky-container{
    display: flex;
    flex-direction: column;
}
#socials-container{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
#socials-container img{
    max-width: 80px;
}
#socials-container a{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.social-link{
    position: relative;
    padding: 1rem;
}
.social-link img{
    transition: opacity 0.5s ease;
}
.tooltip{
    position: absolute;
    top: 50%;
    display: block;
    padding: 40px 3px;
    background-color: #f0e2dcb0;
    color: var(--background-color);
    text-align: center;
    text-wrap: balance;
    width: 120px;
    opacity: 0;
    transition: 0.5s opacity ease;
}
.social-link:hover .tooltip{
    opacity: 1;
}
.social-link:hover img{
    opacity: 0.1;
}
#resourcelists{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}
#resourcelists>div{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
#resourcelists ul{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
#resourcelists ul li p{
    font-size: 14px;
    margin-left: 2rem;
    font-style: italic;
}
#resourcelists ul li:not(.child):before{
    content: "✦";
    padding: 0 0.5rem;
}
#linkscontainer{
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr 1fr;
}
ul{
    list-style-type: none;
    display: flex;
    flex-direction: column;
}