﻿.kolom {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .kolom .box {
        width: 100%;
        height:95%;
        background: rgba(231,231,231, 0.1);
        position: relative;
        border: 1px solid #fff;
        z-index: 5;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    }

        .kolom .box h2 {
            color: #fff;
            text-align: center;
            margin-top: 20px;
        }

        .kolom .box .row {
            background: rgba(231, 231, 231, 0.2);
            margin: 6px auto;
            padding: 1px;
            display: flex;
        }


            .kolom .box .row img {
                width: 250px;
                height: 100%;
                margin-left: 10px;
                transition: 0.3s;
            }
