.background {
    display: flex;
    justify-content: space-around;
    height: 100%;
    align-items: center;
    padding: 30px;
}

.divider {
    height: 80%;
    width: 2px;
    background-color: #4BC6FF; /*to be changed*/
    animation: divider-intro 400ms cubic-bezier(0.65, 0.05, 0.36, 1);
    margin: 45px;
}

.left, .right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.title {
    opacity: 0;
    animation: title-intro 700ms ease-out 100ms forwards;
}

.subtitle {
    opacity: 0;
    animation: subtitle-intro 700ms ease-out 220ms forwards;
}

.title h1{
    font-size: 48px;
    background: #4BC6FF;
    background: linear-gradient(to top right, #4BC6FF 0%, #83CFA5 70%);
    background-clip: text;
    color: transparent;
    margin-bottom: 0;
}

.subtitle h3{
    color: #D3D3D3;
    margin: 0px;
    font-weight: 300;
}

.right .cubewrapper {
    opacity: 0;
    animation: cube-intro 600ms cubic-bezier(0.4, 0, 0.2, 1) 600ms forwards;
}


@media only screen and (max-width:1200px) {
    .left{
        min-width: fit-content;
    }
}
.left {
    /* width: 20%; */
    min-width: max-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.right {
    /* max-width: 600px; to be changed */
    /* margin-top: 50px; */
    height: 80%;
    /* width: 65%; */
}

/* ANIMACE */

@keyframes divider-intro {
    from {
        transform: translateY(-100vh);
    }
    to {
        transform: none;
    }
}

@keyframes title-intro {
    from {
        opacity: 0;
        filter: blur(5px);
        transform: translateX(-300px);
    }
    to {
        opacity: 1;
        filter: none;
        transform: none;
    }
}

@keyframes subtitle-intro {
    from {
        opacity: 0;
        filter: blur(5px);
        transform: translateX(-300px);
    }
    to {
        opacity: 1;
        filter: none;
        transform: none;
    }
}

@keyframes cube-intro {
    from {
        opacity: 0;
        filter: blur(5px);
        transform: translateY(-300px);
    }
    to {
        opacity: 1;
        filter: none;
        transform: translateX(0);
    }
}
