*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'sans-serif', 'popins';
}

.con{
    min-height: 100vh;
    padding-top: 10%;
    padding: 40px;
  width: 100%;  
 background-color: #4158D0;
background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
}

.con h1{
    display: flex;
    align-items: center;
    font-size: 35px;
    font-weight: 700;
    margin: 15px 20px;
    padding: 10px 20px;
    position: relative;

}
.con h1 img{
        height: 40px;
}

.con button {
   display: flex;
   align-items: center;
   text-transform: uppercase;
   transition: 0.5s;
   color: rgb(0, 0, 0);            
   border-radius: 40px;
   background-color: #C850C0;
    cursor: pointer;
    font-size: 12px;
    margin: 15px 20px;
    padding: 10px 20px;
   border: none;
   outline: none;
   font-weight: 900;
   gap: 15px;
 }

 .con button img{
    height: 30px;
 }

 .con button:active{
    background: #5c70d3;
    transition: 0.5s background linear;
 }


.text{
    /* background-color: red; */
    min-height: 200px;
    width: 100%;
    max-width: 500px;
    border: none;
    border-radius: 10px;
    position: relative;
    text-overflow: clip;
    background-color: #fff;
    border: none;
    outline: none;
    /* text-indent: 20px;
    padding-top: 10px; */
    margin-left: 10px;
    margin-top: 10px;
}

.text img{
    width: 25px;
    position: absolute;
    bottom: 15px;
    right: 15px;
    cursor: pointer;
}


@media (max-width: 768px) {
    
    .btn{
        margin-right: 10px;
        width: fit-content; 
    
    }


       .btn img{
        display: none;
       } 
       .con{
        display: flex;
        flex-direction: column;
        align-self: flex-start;
        justify-content: flex-start;
       }
      

}