﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: Arial, sans-serif;
}

.mainfooter {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 8px;
    position: relative;
    width: 100%;
    bottom: 0;
    justify-content: space-between;
}

.mainfooter-nav {
    margin-right: 10px;
}

    .mainfooter-nav a {
        color: white;
        margin: 0 10px;
        text-decoration: none;
    }

        .mainfooter-nav a:hover {
            text-decoration: underline;
        }

.footer-div {
    margin-top: auto;
    z-index: 999;
    width: 100%;
}

@media (max-width: 620px) {
    .footer-div {
        /*height: 150px;*/
    }

    .mainfooter {
        /*height: 150px;*/
    }
}

.contentcontroll {
    /*height: 100vh;*/
    /*overflow: scroll;*/
    padding-bottom: 200px;
    min-height: 100vh;
    /*margin-top: 30px;*/
}

@media (max-width: 620px) {
    .contentcontroll {
        /*overflow: scroll;*/
    }
}