.header-title{
    display: block;
    align-items: flex-start;
    font-family: pacifico;
    text-align: center;
    font-size: 40px;
    color: rgb(187, 209, 139, 1);
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px black;
}

.button-bar{
    display: block;
    align-items: flex-start;
    flex: wrap;
    background-color: rgb(245, 186, 97);
    height: 70px;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 10px;
     display: flex;
     justify-content: center;
     border-radius: 10px;
    
}

button{
    display: inline-block;
    width: 120px;
    height: 50px;
    background-color: rgb(255, 151, 175, 1);
    border-radius: 5px;
    border-width: 2px;
    font-family: pacifico;
    border-color: hotpink;
    color: white;
    cursor: pointer;
    transition: .5s;
    box-shadow: 2px 2px 5px rgb(36, 35, 35);
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 10px;
    display: inline-block
    
    
    
}

button:hover{
    opacity: 0.7;
    box-shadow: 3px, 3px, 8px rgb(32, 32, 32);
}

.dropdown a{
    color: black;
    font-family: arial;
    font-size: 13px;
    text-decoration: none;
    padding: 10px 15px;
    display:block
}

.dropdown .content{
    display: none;
    background-color: rgba(255, 151, 175, 1);
    border-radius: 5px;
    min-width: 100px;
    box-shadow: 2px 2px 5px dark rgb(8, 8, 8);
    position:absolute;
    z-index: 2;
}

.dropdown:hover .content{
    display: block;
}

.dropdown a:hover{
    opacity: 0.7;
    cursor:  pointer;
}

.support-button{
    font-size: 10px;
}

.art-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow:hidden;
    overflow-y: scroll;
    row-gap: 20px;
    column-gap: 20px;
    

}

.art-grid img{
width: 200px;
min-height: auto;
height: 200px;
min-height: auto;
border-radius: 5px;
}


.art-gallery-body{
    background-color:rgb(126, 218, 134);
    border: 10px solid rgb(11, 185, 78);
       display:block;
    flex-wrap: wrap;
    justify-content:  center;
    flex-direction: column;
    width: 1350px;
    max-width: 90%;
    height: 725px;
    display: flex;
    margin-top: 15px;
    border-radius: 10px;
    z-index: 1;
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
 }

 body{
    background-image: url(assets/background-img.jpg);
    display:flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    max-width: 1320px;
 }