* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    background-color: black;
    width: 100vw;
    max-width: 100vw;
    max-height: 100vh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    align-items: center;
}

header {
    display: flex;
    justify-content: center;
    color: white;
    overflow: hidden;
    margin: 2em;
    text-wrap: nowrap;
    transform: scaleY(5);
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    justify-content: space-between;
}

h1 {
    font-size: 1.4em;
    transform: rotate(-1.5deg);
}

.sidebox {
    width: 20vw;
    height: 5vh;
    border: 2px solid white;
    background-color: red;
    transform: skewY(3deg);
    position: absolute;
    top: 30vh;
    left: 0vw;
    z-index: 1;
    color: white;
    padding: 2em;

}

.side2 {
    top: 40vh; 
    text-align: center;
}

.side3 {
    top: 50vh;
    text-align: right;
}

.over-box {
    position: absolute;
    top: 13vh;
    right: 8vw;
    width: 10vw;
    height: 20vh;
    background-color: red;
    border: 2px solid white;
    color: white;
    padding: 2em 1em 0 0.5em;
    text-align: justify;
    line-height: 0.7em;
    z-index: 1;
    transform: skewY(-5deg);
}

.big-box {
    display: flex;
    flex-direction: column;
    margin: auto;
    width: 95vw;
    height: 75vh;
    border: 2px solid white;
    padding: 2em;
    color: white;
    transform: skewy(-1deg);
}

.posts {
    min-height: 100%;
    overflow-y: scroll;
    margin-right: -4%;
    transform: skewX(3deg);
}

.post {
    height: 30%;
    max-height: 30%;
    width: 90%;
    overflow-y: scroll;
    margin-top: 2em;
}

.white-text {
    color: white;
}

footer {
    color: red;
    text-wrap: nowrap;
    transform: rotate(0.5deg);
    margin-bottom: 1em;
}

.text-ontop {
    margin: auto;
    text-wrap: nowrap;
    position: absolute;
    top: 50%;
    left: 0;
    color: white;
    opacity: 15%;
    transform: scaleY(15);
    overflow: hidden;
    user-select: none;
}