/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
   
   body{

    background-image:url("paper.jpg");

    background-repeat:no-repeat;

    background-size:cover;

    background-position:center;

    background-attachment:fixed;

    font-family:Georgia, serif;

    color:#3d3028;

    margin:0;

    padding:30px;
}

.container{

    width:900px;

    margin:0 auto;

    background:white;

    border:1px solid #d6c9bc;

    display:flex;

    box-shadow:
    0 0 15px rgba(0,0,0,0.08),
    0 10px 30px rgba(0,0,0,0.08);
}

.sidebar{

    width:220px;

    padding:20px;

    background:#f2e8de;

    border-right:1px solid #d6c9bc;
}

.content{

    flex:1;

    padding:25px;
}

h1{

    text-align:center;

    margin-bottom:5px;

    font-size:48px;

    letter-spacing:6px;

    font-weight:normal;
}

h1::after{

    content:"❦";

    display:block;

    margin-top:10px;

    font-size:18px;

    color:#b49a87;
}

h2{

    border-bottom:1px solid #d6c9bc;

    padding-bottom:5px;
}

h3{

    margin-top:0;

    color:#5c4538;
}

.tagline{

    text-align:center;

    font-style:italic;

    margin-bottom:30px;

    color:#7a5c4f;
}

img{

    max-width:100%;

    border:1px solid #d6c9bc;

    padding:12px;

    background:white;

    box-shadow:
    0 0 10px rgba(0,0,0,0.10),
    0 5px 15px rgba(0,0,0,0.08);
}

a{

    color:#7a5c4f;

    text-decoration:none;
}

a:hover{

    color:#b07a62;
}

.menu a{

    display:block;

    padding:7px;

    margin-bottom:5px;

    border-radius:5px;

    transition:0.2s;
}

.menu a:hover{

    background:#ece2d8;
}

.box{

    background:#faf7f4;

    border:1px solid #d6c9bc;

    padding:12px;

    margin-top:20px;

    border-radius:10px;

    box-shadow:
    0 2px 6px rgba(0,0,0,0.04);
}

ul{

    line-height:1.8;
}

strong{

    color:#5c4538;
}

footer{

    text-align:center;

    font-size:12px;

    color:#8a7b72;

    margin-top:25px;
}

::selection{

    background:#d8c0af;

    color:#3d3028;
}