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

.page {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-image: url(/assets/backgrounds/mainBG.png);
    background-repeat: repeat;
}

.content {
    flex: 1;
    margin: 0px auto;
    padding-top: 10px;
    padding-bottom: 80px;
    padding-left: 5%;
    padding-right: 5%;
    width: 70%;
    max-width: 90%;
    border-left: 1px solid lightgray;
    border-right: 1px solid lightgray;
    background-color: rgba(255,255,255,0.75);
}

@media screen and (max-width: 768px) {
    .content {
        width: 80%;
    }

    button {
        min-height: 30px;
    }
}