html {
    overflow: hidden;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    height: 100%;
    overflow: auto;
    margin: 0;
    padding: 0;
}

.blog-body {
    height: 100%;
    background-image: url("images/blog_image.jpg");
    background-size: cover;
    padding: 3%;
}

.flex-container {
    display: flex;
    gap: 1%;
    flex-flow: row wrap;
    width: 100%;
}

.left-column {
    position: fixed;
    width: 17%;
}

.right-column {
    padding-left: 20%;
    width: 80%;
}

.heading {
    color: lavender;
    font-size: xx-large;
}

.navbar {
    display: flex;
    flex-flow: column;
    text-align: left;
    padding: 5%;
    background-color:rgba(230, 230, 250, 1);
}

.link-to-background-image {
    text-align: left;
    padding: 5%;
    background-color:rgba(230, 230, 250, 1);
}

.navbar a, .link-to-background-image a {
    color: black;
    text-decoration: none;
}

.buttons {
    image-rendering: pixelated;
}

.text-block {
    color: black;
    padding: 1%;
    background-color:rgba(230, 230, 250, 0.75);
}

.images-text-block {
    color: black;
    padding: 1%;
    background-color:rgba(230, 230, 250, 0.75);
    text-align: center;
}

.text-block a, .images-text-block a {
    color: black;
}

img {
    margin-left:1%;
    margin-right:1%;
}

@media (max-width: 600px) {
    .flex-container {
        display: flex;
        gap: 1%;
        flex-flow: column wrap;
        width: 100%;
    }
    .left-column {
        position: relative;
        width: 100%;
    }

    .right-column {
        position: relative;
        padding-left: 0%;
        width: 100%;
    }
}