body {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    margin: 0;
    background-color: white;
    color: black;
    text-align: center;
}

header {
    padding: 20px;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: black;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.artwork {
    margin: 10px;
    max-width: 300px;
}

.artwork img {
    width: 100%;
    cursor: pointer;
    border-radius: 5px;
}

.artwork h3 {
    margin: 10px 0 5px;
    font-weight: 300;
}

.artwork p {
    font-size: 0.9em;
    margin-bottom: 20px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.about-layout {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 900px;
    margin: auto;
    padding: 20px;
    gap: 20px;
}

.about-image img {
    width: 250px;
    border-radius: 5px;
    
}

.artist-name {
    margin-top: 10px;
    font-style: italic;
}
