/* Standard reset */
*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

html {
    font-size: 62.5%;
}

body {
    box-sizing: border-box;
    width: 100%;
}

.header {
    width: 100%;
    position: fixed;
}

.header__nav {
    width: 100%;
    /* Possible Config Spot */

    display: flex;
    padding: 10px 0;
}

.header__logo {
    width: 180px;
    padding: 15px;
}

.container {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    justify-content: center;
}

.maintenance-container {
    min-width: 280px;
    min-height: 208px;
    margin: auto 10px auto 10px;
    padding: 45px 40px;
    background: rgba(255,255,255, 0.9);
    border-radius: 3px;
    box-shadow: 3px 5px 8px -1px rgba(71,71,71,.1);
}

.primary-heading {
    font-family: 'Roboto', sans-serif;
    color: #2098D5;
    font-size: 20px;
    margin: 10px 0;
}

.secondary-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2d2d2d;
    font-size: 22px;
    text-align: center;
    margin: 10px 0 15px 0;
}

.normal-text {
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    margin: 10px 0;
    color: #303030;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #f5f5f5;
}

.footer__container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.footer__nav {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: #f5f5f5;
    margin: 0 auto;
    width: 33%;
}

.footer__nav a {
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    margin: 5px;
}

.footer__text {
    color: #333;
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    margin: 5px;
}

.copyright, .insured-link {
    width: 33%;
}

.maintenance-image {
    width: 100px;
}

.business-name {
    display: flex;
    align-items: center;
    justify-content: center;
}

.insured-link a {
    text-decoration: none;
}

@media screen and (min-width: 900px) {

    .maintenance-container {
        margin-top: 10%;
        max-width:770px;
    }

    .footer__nav a, .footer__text {
        font-size: 14px;
    }

    /* change footer to horizontal and space by thirds */
    .footer__nav {
        flex-direction: row;
    }

    .insured-link {
        text-align: right;
    }
    
}

@media screen and (min-width: 2500px) {

    .header__logo {
        width: 180px;
    }

    .secondary-heading {
        font-size: 1.1vw;
        margin: 25px 0 40px 0;
    }
    .normal-text {
        font-size: 0.9vw;
        margin: 30px 0;
    }

    .footer__nav a, .footer__text {
        font-size: 0.8vw;
    }

    .maintenance-image {
        width: 200px;
    }
}