.header {
    display: flex;
    border-bottom: 0.3em solid;
    border-color: #D7DADD;
    align-items: center;
    justify-content: space-between;
} 

.headerLogo {
    width: 320px;
    height: 100px;
}

.headerMenuItems {
    display: flex;
}

.headerButtons {
    background-color: white;
    border: none;
    color: black;
    padding: 7px 15px;
    border-radius: 24px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
}

.menu {
    padding-bottom: 10px;
    font-size: 14px;
}

.menu:hover .display {
    display: block;
}

.display {
    display: none;
    background-color:black;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 8px;
}

.logInButton {   
    width: 110px;
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
    list-style: none;
    padding: 5px;
}

.background {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: #666666;
}

.backgroundPositioning {
    padding-left: 200px;
    display: flex;
}

.backgroundLogo {
    padding-top: 5px;
    height: 170px;
    display: flex;
}

h1 {
    font-size: 30px;
    padding-top: 10px;
}

h2 {
    font-size: 20px;
    border-bottom: 0.3em solid;
    border-color: #D7DADD;
}

h3 {
    font-size: 16px;
}

a {
    text-decoration-color: black;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: lighter;
}

.links {
    padding-bottom: 5px;
}

.inline-box {
    width: 48%; 
    display:inline-block;
    /* 
    vertical-align: top;
    box-sizing: border-box */
}

/* .flex-container {
    width:100%;
    overflow:auto
}

.box {
    width: 48%;
    float:left;
} */

/* Smaller screen*/
@media only screen and (max-width: 640px) {

    .header {
        display: inline-block;
    }

    .headerMenuItems {
        display: inline-block;
    }

    .headerLogo {
        border-bottom: 0.3em solid;
        border-color: #D7DADD;
    }

    .backgroundLogo {
        display: none;
    }

    .backgroundPositioning {
        padding-left: 0px;
    }

    .textSections {
        display: inline-block;
    }
  }



