.drag-drop {
    flex-direction: column;
    position: relative; 
    top: 20px; 
    padding: 84px; 
    border: 3px #D9D9D9; 
    justify-content: center !important; 
    align-items: center !important; 
    gap: 10px; 
    display: flex;
    transition: transform 0.3s ease;
    background-color: #F2F2F2;
    border-radius: 10px;
    width: 500px;
    height: 380px;
}

.drag-drop img {
    width: 480px; 
    height: 320px;
    position: absolute;
    top: 10px;
    left: 10px;
}

.text-2 {
    position: absolute;
    top: 330px;
    flex-direction: column; 
    justify-content: flex-start; 
    align-items: flex-start; 
    gap: 10px; 
    display: flex;
    text-align: left;
    left: 10px;
}

.text-2 div {
    position: absolute; 
    font-family: "Inter"; 
    font-weight: 700;
    word-wrap: break-word;
    width: 379px;
    text-align: left;
}

#mainCon {
    background: linear-gradient(0deg, rgb(249, 245, 245) 0%, rgb(249, 245, 245) 100%), linear-gradient(0deg, #5C5C5C 0%, #5C5C5C 100%), linear-gradient(0deg, white 0%, white 100%);
    overflow: hidden; 
    width: 50%;
}

.drag-drop:hover {
    transform: scale(1);
}