/* commented colors

rgb(0, 0, 255) - folk blue
rgb(20, 80, 20, 80%) trans grassy green

*/

img {
    width: 50px;
}

body {
    text-align: center;
    color: white;
    background-image:url(media/grass.jpg);

    background-position: center;
    background-size: 120%;

    /*    
    
    og buttress

    background-image: url("media/blueberryfolk.jpeg");
    background-size: 55% ;
    background-position: center; */
}

header {
    padding: 2% 0%;
    display: flex;
    justify-content: space-between;

    border-bottom: solid 1px;
}

header img {
    margin-left: 2%;
    min-width: 150px;
    width: 20%;
}

nav {
    margin-right: 4%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    text-align: right;
}

header a {
    color:red;
    text-shadow: white 0px 0px 10px;
}

header a:hover {
    color:white;
    text-shadow: white 0px 0px 4px;
}

footer {
    margin-top: 5%;
    text-align: center;
    color: white;
    text-shadow: black 0px 0px 10px;
}

footer a {
    text-decoration: none;
    color: white;
}

footer a:hover{
    color: yellow;
}

.card {
    margin-top: 1%;
    padding: 2%;
    border-bottom: solid 1px;
}

.card h1 {
    text-align: center;
}

.centered {
    text-align: center;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.folk-card {
    display:flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 20%;
    height: auto;

    padding: 20px;
    margin-bottom: 4%;

    color: white;
    background-color: rgb(0,40,0, 70%);

    border: white solid 1px;
    border-radius: 2%;
}

.folk-card img {
    width:90%;
    height:auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    
    border-radius: 50%;
    border: white solid 1px;
    box-shadow: white 0 0 12px;
    
}

.folk-card h3 {
    display: inline-block;
    font-weight: 300;
    width: 80%;
    margin-top: 30px;

/*     
    padding: 2% 4%;
    border: white solid 1px;
    border-radius: 2%; */

    text-align: center;
    word-wrap:break-word;

}
.folk-card h3:hover{
    color: yellow;
}