
body{
background-image: url(bground.jpg);
background-size: cover;
background-attachment: fixed;
display: flex;
flex-direction: column;
justify-content: center;  
}


header{ 
font-size: 4vw;
text-align: center; 
} 



h1{ 
border-style: groove; 
border-color: black; 
border-width: 6px; 
background-color: hsla(52, 100%, 50%, 0.5); 
margin: 0 5% 0 5%; 
text-align: center;  
}

h2 {
font-family: cotton;
font-size: 110%;
margin: 5pt
}


#masonry {
    column-gap: 1.5em;
    font-size: .85em;
    background-color: black;
    margin: 0 5% 0 5%; 
    padding: 5%;
}

#select{
    cursor:pointer;
}

.item {
    display: inline-block;
    padding: .5em;
    margin: 0 0 1em;
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.18);
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}



@media only screen and (min-width: 500px) {
    #masonry {
        column-count: 3;
    }
}

@media screen and (max-width: 499px) {
    #masonry {
        column-count: 1;
    }
}

