html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.image {
    height: 80vh;
}

.box-parent {
    /*display: inline-block;*/
    overflow: hidden;
    /*padding: 5px;*/
}

.box {
    float: left;
    padding: 8px;
    box-sizing: border-box;
    border-radius: 8px;
    width: 25%;
}

@media screen and (max-width: 1200px) {
    .box {
        width: 33%;
    }
}

@media screen and (max-width: 800px) {
    .box {
        width: 50%;
    }
    .image {
        width: 90vw;
        height: auto;
    }
}