
@import url("https://fonts.googleapis.com/css2?family=Literata:ital,opsz,wght@0,7..72,200..900;1,7..72,200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Pangolin&display=swap");

body {
    background: #ffe5a9;
    color: #924543;
    text-shadow:0px 0px 0px #bbb;
    font-family:'Literata', Verdana, Arial;
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 1px;
    margin: 0;
    text-align: justify;
}

a {
    color: #c75e3e;
    text-decoration: none;
    text-align: center;
}

a:hover {
    background: #fdc176;
}

body::-webkit-scrollbar {
    width: 6px;
}
body::-webkit-scrollbar-track {
    background: #fff;
}
body::-webkit-scrollbar-thumb {
    background-color: #924543;
    border-radius: 3px;
}

#container {
    max-width: 850px;
    margin: 10px auto;
    padding: 0 10px;
}

header {
    text-align: center;

}
header img {
    max-width: 100%;
    height: auto;
}
.site-name {

    font: 28px 'Pangolin', Georgia;
    font-style:italic;
    letter-spacing: 3px;
    color:  #c75e3e;
}
.slogan {
    font:italic 12px Georgia, Arial;
    margin-top: 5px;
    color:#e8865f;
}

nav {
    text-align: center;
    padding: 6px 4px;
    margin-bottom: 10px;
}
nav a {
    text-transform: lowercase;
    letter-spacing: 2px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    padding: 4px 6px;
    margin-top: 4px;
    margin-right: 4px;
    font:italic 12px Georgia, Arial;
    color:#b0492a;
    border-radius:5px;
}
nav a img {
    vertical-align: middle;
    margin-right: 4px;
}

#content {
    display: flex;
    gap: 10px;
    border-top: 1px dotted #e8865f;
    padding-top: 10px;
}

.sidebar {
    width: 150px;
    text-align:left;
   
}

.sidebar > div {
    margin-bottom: 8px;
}

.title {
    font: 16px 'Pangolin', Georgia;
    font-weight:400;
    margin-bottom: 4px;
    color:#b0492a;
}

.divider {
    height: 0;
    border-bottom: 1px dotted #e8865f;
    margin: 6px 0;
}

main {
    flex: 1;
    padding: 8px;
    border-left: 1px dotted #e8865f;
    border-right: 1px dotted #e8865f;
}

.main-title {
    color:#924543;
    font: 20px Pangolin, Georgia;
    font-weight:bold;
    margin: 0 0 6px;
    letter-spacing: 2px;
    line-height: 18px;
}

footer {
    border-top: 1px dotted #e8865f;
    text-align: center;
    padding: 22px 8px;
    font-size: 12px;
}

@media(max-width: 600px){
    #content {
        flex-direction: column;
        gap: 12px;
    }
    .sidebar {
        width: auto;
        padding: 4px;
    }
    main {
        border-left: none;
        border-right: none;
        padding: 8px;
    }
    nav {
        font-size: 10px;
        padding: 6px 4px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    nav a {
        margin: 4px 0;
        width: 100%;
        justify-content: center;
    }
}