.image {
    border-radius: 0.35em;
    border: 0;
    display: inline-block;
    position: relative;
}

    .image:before {
        -moz-transition: opacity 0.2s ease-in-out;
        -webkit-transition: opacity 0.2s ease-in-out;
        -ms-transition: opacity 0.2s ease-in-out;
        transition: opacity 0.2s ease-in-out;
        border-radius: 0.35em;
        content: '';
        display: block;
        height: 100%;
        left: 0;
        opacity: 0.5;
        position: absolute;
        top: 0;
        width: 100%;
    }

    .image.thumb {
        text-align: center;
    }

        .image.thumb:after {
            -moz-transition: opacity 0.2s ease-in-out;
            -webkit-transition: opacity 0.2s ease-in-out;
            -ms-transition: opacity 0.2s ease-in-out;
            transition: opacity 0.2s ease-in-out;
            border-radius: 0.35em;
            border: solid 3px rgba(255, 255, 255, 0.5);
            color: #fff;
            content: 'View';
            display: inline-block;
            font-size: 0.8em;
            font-weight: 400;
            left: 50%;
            line-height: 2.25em;
            margin: -1.25em 0 0 -3em;
            opacity: 0;
            padding: 0 1.5em;
            position: absolute;
            text-align: center;
            text-decoration: none;
            top: 50%;
            white-space: nowrap;
        }

        .image.thumb:hover:after {
            opacity: 1.0;
        }

        .image.thumb:hover:before {
            background: url("images/overlay.png"), url("images/overlay.png");
            opacity: 1.0;
        }

    .image img {
        border-radius: 0.35em;
        display: block;
    }

    .image.left {
        float: left;
        margin: 0 1.5em 1em 0;
        top: 0.25em;
    }

    .image.right {
        float: right;
        margin: 0 0 1em 1.5em;
        top: 0.25em;
    }

    .image.left, .image.right {
        max-width: 40%;
    }

        .image.left img, .image.right img {
            width: 100%;
        }

    .image.fit {
        display: block;
        margin: 0 0 2em 0;
        width: 100%;
    }

        .image.fit img {
            width: 100%;
        }

    .image.avatar {
        border-radius: 100%;
    }

        .image.avatar:before {
            display: none;
        }

        .image.avatar img {
            border-radius: 100%;
            width: 100%;
        }

        
.icon-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    }
    
    .icon {
    color: #555;
    font-size: 20px;
    margin-right: 10px;
    transition: color 0.2s ease-in-out;
    }
    
    .icon:hover {
    color: #007bff;
    }