html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #8FA1C2;
}

a {
    color: blue;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: green;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #EBC955;
    padding: 10px 0 10px 0;
    font-size: 24px;
    z-index: 9999;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: left;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: blue;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: green;
}

footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: yellow;
}

.entry-wrapper {
    flex: 1;
    width: 65%;
    margin: 0 auto;
    padding: 1.5em 0;
    background-color: #ECEEF2;
}

.entry {
    width: 90%;
    margin: 0 auto;
    padding: 2em 0 2em 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

footer {
    width: 100%;
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
}
