html,
body{
    height: 100%;
}

*{
    box-sizing: border-box;
}

body{
    display: flex;
    align-items: center;
    margin: 0;
    justify-content: center;
    background: black;
    background-size: cover;
    font-family:Arial, Helvetica, sans-serif;
}

.card{
    display: flex;
    align-items: center;
    width: 75vw;
    max-width: 650px;
    padding: 50px 30px 50px 20px;
    background: #0063b3;
    border-radius: 24px;
    box-shadow: 1px 1px 15px 1px #8257d9;
}

.card img{
    max-width: 280px;
    width: 28vw;
    height: 300px;
    object-fit: cover;
    margin-left: -60px;
    margin-right: 30px;
    border-radius: 20px;
}

.card .text1{
    font-size: 22px;
    margin-right: 30px;
    text-transform: uppercase;
    font-weight: 900;
    color: white;
}

.card .text2{
    font-size: 16px;
    font-weight: 900;
    color:white;
}

.card .paragraph{
    font-size: 14px;
    margin-bottom: 24px;
    color: white
}

.card .btn{
    border: 0;
    background:#00b5b5;
    color:white;
    font-weight:900;
    padding:15px 20px;
    font-size: 13px;
    border-radius: 40px;
    cursor: pointer;
    transition: .5s, color .10s;
}

.card .btn:hover{
    background-image: linear-gradient(#af40ff, #5b42f3 50%, #00ddeb);
    transform: scale3d(1.1,1.1, .3);
}

@media (width <= 740px){
    .card{
        margin: 0 40px;
        padding-left: 50px;
        padding-right: 50px;
        min-width: 100%;
        max-width: 100%;
        text-align: center;
        flex-direction: column;
        border-radius: 0;
        background: #8257d9;
        color: white;
    }

    .card img{
        margin: 100px 0 30px 0;
        width: 100%;
        max-width: 1000px;
        height: 100%;
        box-shadow: white 0 1px 20px, white 0 1px 2px;
    }

    .card .text1{
        margin-right: 0;
        font-size: 26px;
        color: white;
    }

    .card .text2, .card .paragraph{
        color: white;
    }

    .card .btn{
        background: #00b5b5;
        color: white;
    }






}



