.htvr-js-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
}

.htvr-js-content {
    display: flex;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
}

.htvr-js-middle {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 75%;
    max-width: 1000px;
    height: 100%;
    padding-top: 20px;
    line-height: 1.3;
}

.htvr-js-middle-text {
    color: #E8E8E8;
    line-height: 1.2em;
    font-size: 16px;
}

.htvr-js-middle-text-bold {
    color: #E8E8E8;
    line-height: 1.2em;
    font-size: 16px;
    font-weight: bold;
}

.htvr-js-middle-text-italic {
    color: #E8E8E8;
    line-height: 1.2em;
    font-size: 16px;
    font-style: italic;
    text-align: center;
    width: 100%;
}

.htvr-js-middle-text-italic1 {
    color: #E8E8E8;
    line-height: 1.2em;
    font-size: 16px;
    font-style: italic;
    text-align: left;
    width: 100%;
}

.htvr-js-middle-title {
    width: 100%;
    text-align: center;
    font-weight: bold;
    color: #E8E8E8;
    line-height: 1.3em;
    font-size: 25px;
}

.htvr-js-middle-title2 {
    font-weight: bold;
    color: #E8E8E8;
    line-height: 1.3em;
    font-size: 20px;
}

.htvr-js-link {
    text-decoration: none;
    color: rgb(0,100,255);
    text-decoration: underline;
}

.htvr-js-code-block {
    text-decoration: none;
    color: #333;
    margin: 0 auto;
    padding: 1px;
    background-color: #f0f0f0;
    border: 0px solid #ccc;
    border-radius: 2px;
}

.htvr-js-image-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    height: 100%;
    width: 100%;
    gap: 20px;
}

.htvr-js-middle-image {
    width: 270px;
    height: 600px;
    border: 1px solid #ccc;
}

.htvr-js-middle-image2 {
    width: 600px;
    height: 270px;
    border: 1px solid #ccc;
}

/* APPLYING MEDIA QUERIES */
@media (max-width: 700px) {
.htvr-js-middle {
    width: 95%;
}
.htvr-js-image-container {
    flex-direction: column;
}
.htvr-js-middle-image2 {
    width: calc(600px*0.6);
    height: calc(270px*0.6);
}
}