/* Formatting for the Gallery */
.content_container {
    display: grid;
    grid-template-columns: repeat(2, 427px);
    gap: 50px;

    justify-content: center;
    align-items: center;
}

.planet {
    display: flex;
    justify-content: center;
    align-items: center;
    /*margin: 10px 10x;*/
    width: 427px;
    height: 240px;
    overflow: hidden;
}

.planet a {
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.planet a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}