*{
    box-sizing: border-box;
}
body{
    margin: 0%;
    padding: 0%;
}
header{
    width: 100%;
    height: 100vh;
    background: linear-gradient(to bottom , rgb(168, 195, 245) , rgb(255, 206, 214) );
    display: flex;
    justify-content: center;
    align-items: center;
}
.innerheader{
    width: 75%;
    height: 70%;
    background-color: rgba(245, 247, 255, 0.85);
    border-radius: 10px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.leftside{
    width: 35%;
    height: 80%;
    background-image: url('WhatsApp Image 2022-12-08 at 08.14.46.jpeg');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}
.rightside{
    width: 45%;
    height: 80%;
}
.title{
    font-size: 50px;
    color: #2D2D2D;
    line-height: 20px;
}
.text{
    font-size: 20px;
    font-weight: 400;
    color: gray;
    font-family: sans-serif;
}
@media (max-width: 600px) {
    .innerheader{
        width: 80%;
        height: 80%;
        display: block;
    }
    .leftside{
        width: 150px;
        height: 150px;
        border-radius: 50%;
        margin: 30px auto;
    }
    .rightside{
        width: 100%;
        height: 70%;
        padding: 50px 10px;
    }
    .title{
        font-size: 30px;
        text-align: center;
    }
    .text{
        font-size: 18px;
        text-align: center;
    }

}