.downloadcontainer {
    display: flex;
    width: 100%;
    flex-direction: row;
    
}

.leftside {
    display: flex;
    width: 50%;
    transition: width 1s;
    flex-direction: column;
}
.rightside {
    display: flex;
    width: 50%;

    background-color: white;
    flex-direction: column;
    transition: width 1s;
}

.leftside:hover {
    width: 150%;
}

.rightside:hover {
    width: 150%;
}




.dwnimages {
    object-fit: cover;
    width: 100%;
    height: 1200px


}

.rightdwnimages {
    height: 1200px;
    width: 100%;
    object-fit: cover;
}


.buttonfield {
    display: flex;
    width: 100%;
    justify-content: space-around;
    
}

.downoloadbutton {
    position: absolute;
    align-self: center;
    display: flex;
    flex-direction: column;
    max-height: 200px;
    padding: 10px;
    font-size: 30px;
    background-color: rgba(0, 0, 0, 0);
    border: none;
    color: white;
    border-radius: 10px;
    font-weight: bold;
    box-shadow:inset 0px 0px 0px rgba(0, 0, 0, 0);
    align-items: center;
    transition: box-shadow 0.5s, background-color 0.5s;
}




.downoloadbutton:hover {
    box-shadow:inset 0px 0px 10px rgba(0, 0, 0, 1);
    background-color: rgba(0, 0, 0, 0.3);
}

.callerimage {
    position: absolute;
    margin-top: 45px;
    width: 15%;
}

.insidebutton {
    color: white;
    
    text-align: center;
    
}

.outsidebutton {
    position: absolute;
    align-self: center;
    font-size: 20px;
    margin-top: 80px;
    color: white;
    text-decoration: underline;
    font-weight: bold;
}

@media (max-width: 1920px) {
    .rightdwnimages {
        height: 1200px;
        width: 100%;
        object-fit: cover;
    }
    .callerimage {
        position: absolute;
        margin-top: 45px;
        width: 15%;
    }
}

@media (max-width: 600px) {
    .rightdwnimages {
        height: 200px;
        width: 100%;
        object-fit: cover;
    }
    .callerimage {
        position: absolute;
        margin-top: 45px;
        width: 45%;
    }
    .insidebutton {
        font-size: 15px;
    }
    .dwnimages {
        object-fit: cover;
        width: 100%;
        height: 600px
    
    
    }
    .rightdwnimages {
        height: 600px;
        width: 100%;
        object-fit: cover;
    }
    
}