/*Main*/
h1 {
    overflow-wrap: anywhere;
}

.main_content_container {
    margin-bottom: 1.5rem;
    overflow-wrap: anywhere;
}
.main_content_container:last-child {
    margin-bottom: 0.5rem;
}

/*VG image*/
#vg_img_container {
    display: grid;
    float: right;
    cursor: default;
}
.vg_img {
    width: 18rem;
    height: 18rem;
    border-radius: 3rem;
    grid-column: 1;
    grid-row: 1;
}
@media (width <= 40rem) {
    .vg_img {
        width: 100%;
        height: auto;
        margin-bottom: 1.5rem;
    }
}
.vg_img.glass_foreground {
    backdrop-filter: blur(0px);
    object-fit: contain;
    opacity: 0.65;
    overflow: hidden;
}