section {
    background-color: #FFDB70;
    margin-top: 0;
    padding-bottom: 20px;
    user-select:none;
    height: 640px;
 }
 
 section h1 {
    font-size: 2.8em;
    text-align: center;
    margin: 0;
    padding: 20px 0 10px 0;
 }
 
 section p {
    width: 800px;
    margin: 0 auto;
    font-size: 1.2em;
    line-height: 1.3;
    text-align: center;
 }
 
 fieldset {
    width: 90%;
    margin: 10px auto;
    position: relative;
    display: block;
    height: 185px;
 }
 
 fieldset select#startingPoint {
    position: absolute;
    top: 0;
    left: 220px;
    width: 180px;
 }
 
 fieldset select#endingPoint {
    position: absolute;
    top: 0;
    left: 460px;
    width: 180px;
 }
 
 div#bikeMap {
    width: 400px;
    height: 300px;
    border: 3px solid gray;
    margin: 0 15px 0 70px;
    float: left;
 }
 
 div#bikeDirections {
    width: 400px;
    height: 300px;
    border: 3px solid gray;
    margin: 0 30px 0 0;
    float: left;
    overflow: scroll;
 }
 
 select option:first-of-type {
    font-size: 1.3em;
    padding-bottom: 5px;
    font-weight: bold;
 }