@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root{
    --PaleViolet-sub-headingatthetopoftheappUI: hsl(276, 100%, 81%);
    --Moderate-Violet-chat-on-the-left: hsl(276, 55%, 52%);
    --Desaturated-Dark-Violet-chat-on-the-right: hsl(271, 15%, 43%);
    --Grayish-Blue-placeholder-text: hsl(206, 6%, 79%);
    --Very-Dark-Desaturated-Violet-main-heading: hsl(271, 36%, 24%);
    --Dark-Grayish-Violet-paragraph: hsl(270, 7%, 64%);
    --Light-Magenta: hsl(293, 100%, 63%);
    --Light-Violet: hsl(264, 100%, 61%);
    --White: hsl(0, 0%, 100%);
    --Light-Grayish-Violet-app-background: hsl(270, 20%, 96%);
    --Very-Dark-Desaturated-Violet-submit-button-background: hsl(271, 36%, 24%);
    --Very-Light-Magenta-radio-button-outline: hsl(289, 100%, 72%);
}

body{
   font-size: 16px;
   font-family:"Rubik",sans-serif ;
   background-color: var(--Light-Grayish-Violet-app-background);
}

section{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.phone{
    width: 65%;
    padding: 3%;
    border-radius: 20px;
    background-color: var(--White);
}

.massage{
    background-color: var(--Light-Grayish-Violet-app-background);
    border-radius: 20px;
    color: var(--White);
}

.background{
    background-image:linear-gradient(to right,var(--Light-Violet),var(--Light-Magenta)) ;
    border-radius: 20px 20px 10px 10px;
}

.camera{
    text-align: center;
    background-color: var(--White);
    width: 50%;
    margin: auto;
    height: 20px;
    border-radius: 0px 0px 15px 15px;
}

.head{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 5%;
    padding-bottom: 5%;
}

.leftpart{
    display: flex;
    align-items: center;
    width: 75%;
    justify-content: space-evenly;
}

.leftpart img{
    border-radius: 20px;
    border: 2px solid var(--White);
    width: 25px;
}

.description{
    font-size: 10px;
    color: var(--Light-Grayish-Violet-app-background);
}
.description p{
    margin-right: 5%;
}
.threedots{
    margin-right: 5%;
}

.leftmsg{
    width: 60%;
    font-size: 10px;
    margin-top: 4%;
    margin-left: 2%;
    padding: 3%;
    border-radius: 10px;
    background-color: var(--Grayish-Blue-placeholder-text);
    color: var(--Moderate-Violet-chat-on-the-left);
}

.rightmsg{
    width: 60%;
    font-size: 10px;
    margin-top: 4%;
    margin-left: 2%;
    padding: 3%;
    border-radius: 10px;
    background-color: var(--White);
    color: var(--Desaturated-Dark-Violet-chat-on-the-right);
}

.right{
    display: flex;
    justify-content: flex-end;
}

.images{
    margin-top: 4%;
    margin-right: 2%;
}

.images img{
    border-radius: 10px;
    width: 55px;
}

.payment{
    padding: 5%;
    font-size: 10px;
    background-image: linear-gradient(to right,var(--Light-Violet),var(--Light-Magenta));
    color: var(--White);
    margin-top: 4%;
    margin-left: 2%;
    border-radius: 10px;
    width: 65%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment p{
    font-size: 16px;
    font-weight: bolder;
}

form{
    display: flex;
    justify-content: center;
}

input{
    background-color: var(--White);
    margin-top: 7%;
    padding: 2%;
    margin-bottom: 3%;
    width: 90%;
    border-radius: 30px;
    font-size: 11px;
}

.booking{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 8%;
}

.booking h1{
    font-size: 40px;
}

.booking p{
    width: 80%;
    margin-top: 3%;
    color: var(--Very-Dark-Desaturated-Violet-main-heading);
}

.violet{
    width: 50%;
    height: 50vh;
    background-image: linear-gradient(var(--Light-Violet),var(--Light-Magenta));
    position: absolute;
    border-radius: 0px 0px 1000px 0px;
    z-index: -1;
}
.gray{
    width: 50%;
    height: 50vh;
    background-color: hsl(300, 3%, 93%);
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 1000px 0px 0px  0px;
    z-index: -1;
}

@media only screen and (min-width: 865px){
    section{
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
    .phone{
        width: 25%;
        padding-inline-start: .55;
    }
    .booking{
        width: 35%;
        text-align: left;
        margin-left: 10%;

    }
    
}

