body {
    background: fixed;
    background-color: #89A8C7;
    padding: 2% 4%;
}

main a {
    font-size: 1.5rem;
    text-decoration: none;
    color: #000;
}

main a:hover {
    color: #50B6D1;
}

main ul {
    list-style-position: inside;
    font-size: 1.5rem;
}

main li {
    padding: 8px 0px;
}

main h1,
main h2 {
    padding-bottom: 8px;
}

.separate {
    margin-top: 40px;
}

.windowTop {
    background: #50B6D1;
    border-style: solid;
    border-bottom: 0px;
    border-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding: 10px 20px;
    font-size: 1.5rem;
    display: flex;
    justify-content: space-between;
}

.windowTop p {
    padding: 4px;
}

.windowCircle {
    display: flex;
    width: min-content;
}

.circle {
    height: 24px;
    width: 24px;
    background-color: #FFA0A0;
    border-style: solid;
    border-radius: 50%;
    margin: 4px;
}

.windowContent {
    padding: 40px;
    background: #fff;
    border-style: solid;
    border-radius: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.windowContent p {
    font-size: 1.5rem;
    padding-top: 10px;
}

.post {
    margin-bottom: 40px;
    padding: 20px;
    background-color: beige;
    max-height: 600px;
    overflow-y: auto;
}

#blinkies {
    width: 200px;
}

#blinkies:hover {
    transition: transform 0.1s;
    transform: translate(8px);
}

#rotate:hover {
    transition: transform 0.7s;
    transform: rotate(360deg);
}

header h1 {
    font-size: 3rem;
    padding-bottom: 20px;
}

nav {
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

nav a {
    text-decoration: none;
    background-color: #fff;
    font-size: 1.5rem;
    color: #000;
    padding: 1rem;
    border-style: solid;
    border-radius: 5px;
    width: 230px;
    box-shadow: 5px 5px;
}

nav a:hover {
    color: #50B6D1;
    transition: transform 0.5s;
    transform: rotate(5deg);
}

footer {
    text-align: center;
    padding: 20px;
    background: #89A8C7;
}

footer p {
    padding: 20px;
}

.container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.sidecontent {
    margin-top: 20px;
    min-width: 350px;
    max-width: 450px;
}

.sidecontent .windowTop {
    background: #FFA0A0;
}

.sidecontent .circle {
    background: #89A8C7;
}

.content {
    margin-top: 20px;
    flex-grow: 1;
    min-width: 400px;
}

.content .windowTop {
    background: #03274B;
}

.content .windowTop p {
    color: #fff;
}

.content .circle {
    background: #fff;
}

.bookshelf {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

#books {
    width: 150px;
    color: #FFA0A0;
}

#books:hover {
    box-shadow: 6px 6px;
}

.progressBar {
    background-color: #fff;
    height: 50px;
    margin-top: 8px;
    border-radius: 5px;
}

.progress {
    background-color: #50B6D1;
    height: 50px;
    text-align: center;
    border-radius: 5px;
}

/* Browse Update Box */
.browse-update-box {
    background-color: #fff8ce;
    padding: 20px;
    border: 2px dashed #233ce6;
    border-radius: 10px;
    margin-top: 0px;
    font-size: 1.5rem;
}

.browse-update-box h2 {
    color: #233ce6;
    font-size: 2rem;
    padding-bottom: 10px;
}

/* Blog Post Image Styling */
.post img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    margin-bottom: 10px;
}
