body {
    /* font-family: 'Lora', serif; */
    font-family: "Baloo Bhai 2", sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background-color: #f5f5f5;
    padding: 1em;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    /* font-family: 'Montserrat', sans-serif; */
    /* font-family: "Jost", sans-serif; */
    font-family: "Baloo Bhai 2", sans-serif;
    font-weight: 500;
    font-size: larger;
}
nav a:hover{
    color: rgb(183, 8, 8);
}

#banner { 
    background-image: url('../images/Others/Egon_Schiele_prison.jpeg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 110px 100px;
    color: rgb(182, 12, 12);
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    
} 
.banner-text {
    opacity: 0;
    transition: .5s ease;
}

#banner:hover .banner-text {
    opacity: 1;
}

h1, h2, h3, h4{
    font-family: "Jost", sans-serif;
    color: rgb(182, 12, 12);
}   
section{
    display: flow-root;
}

#about, #Biography, .gallery-preview, #gallery, #artcollections-main {
    padding: 2%;
    width: 96%;
    min-height: fit-content;
    max-height: fit-content;
}
#about, #Biography{
    background-color: hsl(48, 45%, 94%);

}
#about .column1{
    width: 39%;
    float: left;

}

#about .column2{
    width: 59%;
    float: right;

}

#about img{
    width: 100%;
}

table{
    border-collapse:collapse;
    width: 100%;
    text-align: center;
}

#about td, #about th {
    border: 1px solid #160c0c;
    text-align: left;
    padding: 10px;
}

.gallery-preview img{
    max-width: 98%;
    max-height: 500px; 
}

.grid-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 10px;
    background-color: hsl(48, 45%, 94%);
    padding: 10px;
}

.grid-item {
    background-color: rgba(255, 255, 255, 0.8);
    /* border: 1px solid grey; */
    padding: 10px;
    font-size: 16px;
    text-align: center;
    align-self: center;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
}