*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans&display=swap');
html, body{
    height: 100vh;
    background: linear-gradient(to bottom, #f0f0f0, #4f9be2);
    display: flex;
    justify-content: center;
    align-items: center;
  }
.container{
    display: flex;
    width: 100%;
    justify-content: center;
    padding-top: 50px;
}
.right{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    font-family: 'Fira Sans', sans-serif;
    padding: 50px;
    text-align: center;

}
.left{
    width: 50%;
    box-shadow: 0 7px 30px -10px rgba(150,170,180,0.5);

}
.left img{
    width: 100%;
    height: 100%;

}
.right img{
    width: 250px;
    height: auto;
}
.right h1{
    font-size: 35px;
    font-weight: 900;
    color: #14213d;
}
.right p{
    color: #306485;
    font-weight: bolder;


}
.right h2{
    color: #2b2d42;
}
.social{
    display: flex;
    width: 30%;
    justify-content: space-around;
}
.fb{
    color:#4267B2;
    height: 35px;
    width: auto;


}
.insta{
    color:#E1306C;
    height: 35px;
    width: auto;

}
@media screen and (max-width: 850px) {
    .container{
        flex-direction: column;
        padding-top: 0px;

    }

    .right{
        width: 100%;
        line-height: 1.5;
        justify-content: space-around;
        height: 300px;
        padding: 0px;
        padding-top: 10px;
    }
    .left{
        width: 100%;

    
    }
    .right p{
        font-size: 13px;
    }
    .right h1{
        font-size: 15px;
    }
    .right h2{
        font-size: 12px;
    }
  }