html, body {
    min-height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: #000;
}
.main-title {
    color: #fff;
    text-align: center;
    font-size: 2.2em;
    font-weight: bold;
    margin: 32px 0 24px 0;
    font-family: 'Sen', Arial, sans-serif;
    letter-spacing: 1px;
}
.triple-phase-flex {
    display: flex;
    flex-direction: row;
    width: 100vw;
    gap: 8px;
}
.triple-phase-flex img {
    flex: 1 1 0;
    object-fit: cover;
    width: 100%;
    height: 83vh;
    display: block;
}
@media (max-width: 750px) {
    .triple-phase-flex {
        flex-direction: column;
        width: 100vw;
        gap: 8px;
    }
    .triple-phase-flex img {
        height: auto !important;
        width: 100vw !important;
        max-width: 100vw !important;
        display: block;
    }
}