#content {
    padding-top: 7.5vh;
}



#content .left h1 {
    padding-left: 9.5vw;
    text-align: left;

    color: #112;
    font-size: calc(0.5em + 3vw);
    font-weight: 100;
    font-family: "Caveat", cursive;
}

#content .left p {
    width: calc(60% - 9.5vw);
    padding-left: 9.5vw;
    text-align: justify;

    color: #112;
}



#content .right h1 {
    padding-right: 9.5vw;
    text-align: right;

    color: #112;
    font-size: calc(0.5em + 3vw);
    font-weight: 100;
    font-family: "Caveat", cursive;
}

#content .right p {
    width: calc(60% - 9.5vw);
    padding-left: 40%;
    padding-right: 9.5vw;
    text-align: justify;
    text-align-last: right;

    color: #112;
}



.imageGallary {
    width: calc(100% - (9.5vw * 2));
    height: 40vh;
    margin-left: 9.5vw;
    margin-right: 9.5vw;
    margin-bottom: 5vh;
    overflow-x: scroll;
    overflow-y: hidden;
    text-wrap: nowrap;
}

.imageGallary img {
    height: 100%;

    border-radius: 5px;
    opacity: 75%;
    cursor: pointer;
    transform: scale(95%);
    filter: saturate(0%);
    user-select: none;

    transition: 0.2s;
}

.imageGallary img:hover {
    opacity: 100%;
    transform: scale(98%);
    filter: saturate(100%);
}

.imageGallary img:active {
    transform: scale(97%) !important;
}

.imageGallary::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.imageGallary::-webkit-scrollbar-thumb {
    background-color: #1138;
    border-radius: 5px;
}

.imageGallary::-webkit-scrollbar-thumb:hover {
    background-color: #113a;
    border-radius: 5px;
}



/* IMAGE DISPLAYING TECHONOLIES WOOPWWOP */

#imageDisplayHolder {
    position: fixed;
    z-index: 999999999999999999999999;
    width: 100%;
    height: 100vh;
    
    background-color: #112b;
    pointer-events: none;

    opacity: 0%;
    transition: 0.5s;
}

#imageDisplayHolder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;

    transform: scale(90%) translateY(50px);
    opacity: 0%;
    transition: 0.5s;
    user-select: none;
}

#nextImage {
    position: absolute;
    display: flex;
    align-items: center;
    top: 0px;
    right: 10px;
    height: 100vh;

    color: #fff;
    font-size: 3rem;
}

#nextImage p {
    padding: 20px;

    cursor: pointer ;
    text-shadow: #112 5px 5px 20px;
    user-select: none;
}

#prevImage {
    position: absolute;
    display: flex;
    align-items: center;
    top: 0px;
    left: 10px;
    height: 100vh;

    color: #fff;
    font-size: 3rem;
}

#prevImage p {
    padding: 20px;

    cursor: pointer ;
    text-shadow: #000 0px 0px 30px;
    user-select: none;
}