body, html {
    margin: 0;
    font-family: Arial;
}

a:link, a:visited, a:hover, a:active {
    text-decoration: none;
    color: whitesmoke;
}

#desktopNavbar {
    display: flex;
}

#mobileNavbar {
    display: none;
}

.panel {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: wrap;
    flex-direction: row;
    align-content: center;
}

.main-panel-desktop {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-flow: wrap;
    flex-direction: row;
    align-content: center;
}

.main-panel-mobile {
    display: none;
}

.main-content {
    margin: 10px;
    padding: 10px;
    width: 450px;
}

.inner-panel {
    margin-bottom: 35px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: wrap;
    flex-direction: row;
    align-content: center;
}

.inner-content {
    margin-right: 10px;
    padding: 0;
}

.navbar {
    height: 100px;
    justify-content: space-around;
    text-align: center;
}

.nav-element {
    margin: 10px;
    padding: 10px;
}

.logo {
    width: 200px;
    margin-top: 100px;
    margin-left: 0px;
}

.link {
    width: 120px;
    margin-top: 70px;
    font-size: 18px;
}

.content {
    margin: 10px;
    padding: 10px;
    width: 450px;
}

.navbar-container {
    margin: auto;
    width: 1000px;
    color: whitesmoke;
}

.header {
    background-color: #6EBC4D;
    width: 100%;
    margin: auto;
}

.body-content {
    margin-top: 0px;
}

p.heading {
    margin-bottom: 35px;
    text-transform: uppercase;
    font-size: 20px;
    color: #6EBC4D;
}

p.right {
    text-align: right;
}

#showMenuIcon {
    padding-top: 12px;
    padding-left: 15px;
}

#mobileLogo {
    padding-top: 15px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

hr.style-one {
    width: 100%;
    border: 0;
    height: 1px;
    background: #333;
    background-image: linear-gradient(to right, #ccc, #333, #ccc);
}

/*
 * 360 Spin for Loading
 */
@keyframes rotate360 {
    to {
        transform: rotate(360deg);
    }
}

.spinner {
    margin-top: 60px;
    animation: 1s rotate360 infinite linear;
}

@media (max-width: 980px) {

    .row {
        display: flex;
        flex-direction: row;
        width: 100%;
    }

    #desktopNavbar {
        display: none;
    }

    #mobileNavbar {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        height: 60px;
    }

    .main-panel-desktop {
        display: none;
    }

    .main-panel-mobile {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-flow: wrap;
        flex-direction: row;
        align-content: center;
    }

    .inner-panel {
        margin-bottom: 5px;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .link {
        width: 100%;
        height: 100px;
    }

    .logo {
        width: 100%;
        height: 200px;
    }

    .content {
        width: 100%;
    }
}
