html,body{
    height:100%;
    margin: 0;
    background-image: radial-gradient(#C390B4 0% , #823E82 100%);
}

.sale{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image{
    display: flex;
    align-items: center;
    justify-content: center;
}

img{
    width: 90%;
    border-radius: 25px;
    box-shadow: 5px 10px 5px #0122;
}

.mobile{
    display: none;
}

@media only screen and (max-width: 600px) {
    
    .mobile{
        display: block;
    }

    .desktop{
        display: none;
    }
    
}