body{
    font-family: 'Comfortaa', cursive;
}

main{
    margin: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
}

.main-footer{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.main-footer ul li{
    display: inline-block;
}
.main-footer ul li a{
    color: #eee;
    text-decoration: none;
    font-size: 85%;
    margin: 0 15px;
}
.bg-dark-blue{
    background-color: #000f20 !important;
}

.h-100{
    height: 100vh !important;
}


@media(max-width: 768px){
    .h-100{
        height: auto !important;
    }
    .h-100 + .h-100{
        min-height: 50vh !important;
        height: auto !important;
    }
}