.right-home {
    background-image: url('https://mgmits.ac.in/wp-content/uploads/2019/05/mits-1024x368.jpg');
    background-size: cover;
    background-position: center; 
    
    width: 200%;
    height: 300px;
}

.right-home-2 {
    background-image: url('/Images/mits-drone-shot.jpeg');
    background-size: cover;
    background-position: center; 
    
    width: 200%;
    height: 300px;
}
.address {
    font-size: 80%; /* You can adjust the percentage to decrease or increase the size */
}
header {
    background-color: #e4641a;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
}

.cart-logo {
    font-size: 24px;
    cursor: pointer;
}



@media screen and (max-width: 768px) {
    .right-home {
        width: 100%;
    }
    .right-home-2 {
        width: 100%;
    }
    .address {
        font-size: 60%;
    }
    header {
        padding: 10px;
    }
    .logo {
        font-size: 20px;
    }
    .cart-logo {
        font-size: 20px;
    }
}

@media screen and (max-width: 400px) {
    .right-home {
        width: 100%;
        height: 200px;
    }
    .right-home-2 {
        width: 100%;
        height: 200px;
    }
    .address {
        font-size: 50%;
    }
    header {
        padding: 5px;
    }
    .logo {
        font-size: 16px;
    }
    .cart-logo {
        font-size: 16px;
    }
}

