/* Global View aka Desktop View */

body {
    font-family: 'Asap', sans-serif;
    color: white;
    background-color: #EBEBEB;
}

a {
    color: white;
    text-decoration: none;
}

.container {
    min-height: 500px;
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 140px;
}

.header-container {
    background-color: rgb(60, 60, 60);
    min-height: 100px;
    margin-bottom: 40px; 
    position: fixed;
    width: 100%; 
}

header {
    max-width: 1024px;
    min-height: 100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbutton {
    border: 1px solid white;
    padding: 11px 25px;
    margin: 11px 8px;
    font-family: 'Asap', sans-serif;
    position: relative;
    display: inline-block;
    text-decoration: none;
}


.highlight {
    font-weight: 700;
}

.mob-wrapper {
    display: none;
}


.col {
    width: 30%;
    margin-bottom: 40px;
    background-color: rgb(231, 201, 162);
}

.col p {
    font-size: .875rem;
    padding: 20px 30px;
    line-height: 1.25rem;
}

.hide-desktop-only {
    display: none;
}


.col img {
    width: 100%;
    height: auto;
}

.col p::first-line {
    font-weight: bold;
}



/* Tablet View */
@media (max-width: 768px) {

.col {
    width: 47%;
}

.hide-desktop-only {
    display: block;
}

.header-container {
    position: relative;
}

.container {
    padding-top: 5px;
}

nav {
    display: none;
}

nav a {
    display: block;
}

.logo {
padding: 40px 0;
}

.mob-wrapper {
    display: block;
    padding-right: 30px;
}

.mob-nav {
    display: none;
    position: absolute;
}

.navbutton {
    display: block;
    background-color: coral;
    padding: 15px 30px;
    margin-left: -70px;
    text-align: center;
}

}



/* Mobile View: Dan uses 400 */
@media (max-width: 400px) {
    .col {
        width: 100%;
    }

    .hide-mobile {
        display: none;
    }

    

}
