﻿.imBackground {
    position: absolute;
    background-color: rgba(0,0,0,0.8);
    height: 100%;
    width: 100%;
    z-index: 15;
    left: 0;
    top: 0;
    display: flex;
    box-sizing: border-box;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255, 0.7);
}

.imBackgroundColumn {
    color: rgba(255,255,255, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10vw;
    position: absolute;
    top: 0;
    height: 100%;
    box-sizing: border-box;
    z-index: 25;
}

    .imBackgroundColumn:first-of-type {
        align-items: flex-start;
        left: 0;
    }

    .imBackgroundColumn:last-of-type {
        align-items: flex-end;
        right: 0;
    }

    .imBackgroundColumn span {
        cursor: pointer;
        font-size: 3rem;
        user-select: none;
    }

.imBackgroundClose {
    position: absolute;
    right: 1.5vw;
    top: 1vw;
    cursor: pointer;
    font-size: 1.5rem !important;
}

    .imBackgroundColumn span:hover, .imBackgroundClose:hover {
        color: rgb(255,255,255);
    }

.imImg {
    position: absolute;
    transition: left 1s;
    z-index: 20;
}
