body,
html {
    margin: 0px;
    padding: 0px;

    height: 100vh;
    width: 100vw;
}

main {

    height: 100%;
    width: 100%;
    padding: 1vw;
    box-sizing: border-box;

    position: absolute;

    flex-direction: row;
    display: flex;

    background-image: url("/pictures/vaporwave-background.png");

}

#master-content {
    height: 100%;
    width: 100%;

    position: relative;
    z-index: 50;
}

#ad-container {
    height: 100%;
    width: 100%;

    position: absolute;
    z-index: 150;
    background-color: rgba(37, 37, 37, 0.7);
}

section {
    padding: 1.5%;
    box-sizing: border-box;

    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: flex;
}

.side {
    height: 100%;
    flex: 1;
}

.center {
    height: 100%;
    flex: 3;
}