/* grass.css */

/* Title header styles */
.main-header {
    background: WhiteSmoke;
}
.main-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 35px;
    line-height: 1.2em;
    word-wrap: break-word;
    font-weight: 700;
}
.main-title a, .main-title a:hover, .main-title a:visited {
    color: black;
}
.entry-header {
    display: block;
    word-wrap: break-word;
}
.entry-title {
    font-family: Georgia, Times New Roman, serif;
    font-weight: 300;
    font-size: 30px;
}
.site-branding {
    display: block;
}
/* Body styles */
body {
    background-color: white;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
    font-weight: 400;
    text-transform: none;
    font-size: 17px;
}

/* Link styles */
a {
    color: blue;
    text-decoration: none;
}

a:visited {
    color: purple;
}

a:hover {
    text-decoration: underline;
}

/* Center alignment */
.aligncenter {
    text-align: center;
}

/* Content area max-width */
.entry-header, .content {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
/* Table of Contents styles */
.toc {
    background: WhiteSmoke;
    max-width: 300px;
    padding: 5px 10px;
    margin: 0 auto;
}
.toc-title {
    font-size: 22px;
    font-weight: 500;
}
/* Image styles */
.image-container {
    max-width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
}
.responsive-image {
    max-width: 100%;
    height: auto;
}
/* List styles */
ul {
    list-style: square;
}
li {
    margin-bottom: 10px;
}
/* Copyright style */
.copyright-bar {
    background: WhiteSmoke;
    padding: 30px 10px;
}
