* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    background-color: burlywood;
    color: black;
    width: 100vw;
    height: auto;
    overflow-x: hidden;
}

h2 {
    position: relative;
    width: 100%;
    height: 2.5rem;
    margin-block-end: .5rem;
    margin-top: 3rem;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-align: center;
}

.gallery_container {
    width: 100%;
    margin: 20px auto;
    columns: 4;
    column-gap: 1.25rem;
    padding-inline: 1.5rem;
}

.img_container {
    width: 100%;
    margin-bottom: 10px;
}

.img_container img {
    width: 100%;
    border-radius: 15px;
}

@media (max-width:1200px) {
    .gallery_container {
        width: calc(100% - 30px);
        columns: 3;
    }
}

@media (max-width:758px) {
    .gallery_container {
        width: calc(100% - 20px);
        columns: 2;
    }
}

@media (max-width:488px) {
    .gallery_container {
        columns: 1;
    }
}