.onama-article_text{
    width: 80%;
    font-size:1.1rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
.image-box--onama{
    width: 100%;
    height: 50vh;
    background-color: var(--main-color);
    display: flex;
    flex-direction: row;
    margin-bottom: 100px;
}
.image-box--double{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    justify-content:center;
    align-items: center;
}

.image_wrapper--onama{
    width: 50%;
    height: 100%;
}
.image-wrapper--left{
    display: flex;
    flex-direction: column;
}
.image-wrapper--single{
    width: 100%;
    height: 50%;
}
.image-wrapper--single-right{
    width: 100%;
    height: 100%;
}
.image--onama{
    object-fit: cover;
    object-position:top;
    width: 100%;
    height: 100%;
    border: 2px solid darkgoldenrod;
}
.image--onama:hover{
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
}
@media screen and (max-width:600px){
    .onama-article_text{
        width: 95%;
    }
    .image-box--onama{
        height: 100%;
        flex-direction: column;
    }
    .image-box--double{
        width: 100%;
        height: 50vh;
    }
    .image--onama{
        border: 1px solid darkgoldenrod;
    }
}
