  h1 {
    text-align: center; 
    display: flex; 
    justify-content: center;
    align-items: center;
    font-size: 60px;
    color:white;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color:brown;
    height: 100px;
    margin-bottom: 10px;
    margin-top: 10px;
    position: -webkit-sticky; 
    position: relative;
    top: 0
}
body {
    background-image: url("./images/fifth_ave_mobile_darkened2_final.jpg"); 
    background-attachment:fixed;
    background-size: cover;

}

.flex-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center
}
div {
    margin: 10px;
    background-color: white; 
    padding: 20px;
    width: 400px;
}
h2 {
    font-size: 15px;
    word-wrap:break-word;
    color: black;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    text-align: left;
    line-height: 1;
    margin: 10px;
    margin-bottom: 5px;
    display: block;
}
img {
    width: 400px
}


input {
    width: 250px;
    height: 25px;
    font-size: 15px;
  
}
form {
    align-items: center;
    justify-content: center;
    display: flex;
    margin-bottom: 20px;
}
.searchbar {
    background-color: white;
    width: 300px;
    height: 30px;
    border-color: brown;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.button {
    background-color:white;
    width: 150px;
    margin-left: 10px;
    height:30px;
    border-color: brown;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 15px;
    color: brown;
}

@media only screen and (max-width: 600px) {
    h1 {
        text-align: center; 
        display: flex; 
        justify-content: center;
        align-items: center;
        font-size: 25px;
        color: white;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        background-color: brown;
        height: 50px;
        margin-bottom: 5px;
        margin-top: 5px;
        position: -webkit-sticky; 
        position: relative;
        top: 0
    }

    div {
      
        background-color: white;
    }

    h2 {
        font-size: 15px;
        word-wrap:break-word;
        color: black;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        text-align: left;
        line-height: 1;
        margin: 8px;
        margin-bottom: 5px;
        display:table;
        background-color: white;
    }
   
    img {
        width: 400px
    }
    input {
        width: 150px;
        height: 20px;
        font-size: 15px;
      
    }
    form {
        align-items: center;
        justify-content: center;
        display: flex;
        margin-bottom: 10px;
    }
    .searchbar {
        background-color: white;
        width: 200px;
        height: 20px;
        border-color: brown;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
    }
    .button {
        background-color:brown;
        width: 100px;
        margin-left: 10px;
        height:25px;
        border-color:brown;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        font-size: 15px;
        color: white;
    }
    
}   

