.gallery_container {
    margin: 50px 0 0 10px;
    width: 90%;
    height: 450px;
    display: flex;
    justify-content: center;
    margin-left: 5%;
    gap: 10px;
}

.gallery_container a {
    width: 25%;
    height: 100%;
    display: flex;
    transition: all ease-in-out 0.5s;
}

.gallery_container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border: 2px rgba(35, 64, 114, 0.374) solid;
}

.gallery_container a:hover {
    width: 40%;
}