:root {
    --gray: #393939;
    --main-brown: #562222;
    --darker-gray: #232323;
    --light-gray: #717171;
    --mid-light-gray: #616161;
    --lighter-gray: #b3b3b3;
    --gold: #c49b56;
    --darker-gold: #bc924f;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--light-gray);
    font-family: "Roboto Mono", monospace;
    font-weight: bold;
    font-style: normal;
    color: white;
    user-select: none;
    text-align: left;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    align-items: center;
}
.main-image-container {
    width: 100%;
    margin-top: 150px;
    text-align: center;
    justify-content: center;
    padding: 0;
    min-height: 700px;
    overflow: hidden; 
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.gallery-image {
    width: 300px;
    height: 200px;
    margin: 10px;
    overflow: hidden;
    border-radius: 10px;
    background-color: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}
img {
    max-width: 500px;
    max-height: 500px;
}

.gallery-image:hover {
    transform: scale(1.05);
}
@media screen and (max-width: 768px) {
    .main-image-container {
        margin-top: 100px;
        padding: 0 20px; 
    }
    
}