body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #000000;
}

h1 {
    font-family: "AutourOne";
    color: #ffffffff;
}
h2 {
    font-family: "AutourOne";
    color: #ffffffff;
}
p {
    font-family: "AutourOne";
    color: #ffffffff;
}

#blogFlexBox {
    position: absolute;
    z-index: 2;

    width: 100%;
    height: auto;    

    display: flex;
    flex-direction: column;
    overflow-wrap: anywhere;
}
#blogContent {
    position: fixed;
    z-index: 2;

    width: 100%;
    height: 100vh;

    min-height: 0;
    
    overflow-y: scroll;
}


.BlogEntry {
    position: relative;
    z-index: 2;

    margin: 16px;

    width: calc(70%);
    left: 15%;

    background-color: #00000088;
}

.blogTitle {
    position: absolute;
    z-index: 3;
    font-size: 50px;

    left: 20px;
    top: -5px;
}
.blogText {
    position: absolute;
    z-index: 3;

    font-size: 15px;

    width: calc(100% - 30px);

    left: 15px;
    top: 90px;
}