
* {
    font-family: 'Lora', serif;
}

h1,
h2,
h3,
h4 {
    font-family: 'Lora', serif;
    font-weight: 500;
    text-align: center;
    justify-content: center;
    align-items: center;
}

h2 {
    text-decoration: underline;
    text-underline-offset: 0.2em;
}


body {
    background-image: url('../image/yosemite-valley-sunset.jpg');
    background-repeat: no-repeat;
    background-size: 100% 100vh;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.top-body {
    display: flex;
    display: block;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 17%;
    border-radius: 0.5em;
}


.searchcontainer {
    background-color: #fff;
    border-color: #dbdbdb;
    color: #363636;
    cursor: pointer;
    display: block;
    font-size: 1em;
    max-width: 100%;
    outline: 0;
    border-radius: 0.5em;
}

select {
    display: block;
    margin: 0 auto;
    }



p {
    text-align: center;
    flex-wrap: wrap;
    padding-left: 20%;
    padding-right: 20%;
}

p a {
    color: black;
}
#search-button {
    display: block;
    margin: 0 auto;
    border: solid white 2px;
    border-radius: 0.5em;
}


.stateselector {
    align-items: center;
    width: 200px;
}


.search-button {
    justify-content: center;
}


.footer {
    display: flex;
    position: absolute;
    bottom: 0;
    justify-content: center;
    width: 100%;
    background-color: tan;
}


/* Small screens (mobile devices) */
@media only screen and (max-width: 767px) {
    
    h1,
    h2,
    h3,
    h4 {
        font-weight: bold;
  }

    ul {
    flex-direction: row;
    flex-wrap: wrap;
  }

  li {
    flex: 0 0 50%;
    box-sizing: border-box;
    padding: 10px;
    margin: 0;
  }

}