:root {
    --downloadr-bg: rgba(0, 100, 0, 0.5);
    --notify-bg: rgba(0, 100, 0, 0.5);
}

.container {
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    display: flex;
}

.site {
    background-color: black;
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(3px);
    transition: width 0.6s, filter 0.6s, background-position 0.6s;
    height: 100%;
    width: 50%;
}

.site:hover {
    cursor: pointer;
    filter: blur(0px);
    background-position: center;
    width: 100%;
}

.logo {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    z-index: 1010;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 50%;
}

.trademark {
    position: fixed;
    bottom: 1rem;
    left: calc(1rem + 135px + 1rem);
    z-index: 1010;
    font-family: cursive;
    font-size: 24px;
    font-weight: normal;
    line-height: 28px;
    letter-spacing: 3px;
    color: rgba(250, 250, 250, 0.75);
    text-shadow: 2px 2px 4px #000000;
}