*{
    margin: 0;
    padding: 0;
    font-family: 'Chonburi', cursive;
    font-family: 'Kanit', sans-serif;
    font-family: 'Open Sans', sans-serif;
    font-family: 'Roboto', sans-serif;
    font-family: 'Tektur', cursive;
    font-family: 'Work Sans', sans-serif;
    box-sizing: border-box;
}

.container{
    width: 100%;
    min-height: 100vh;
    background-color: #333;
    color: #fff;
    padding-top: 4%;
    padding-left: 10%;
}

.container h1{
    display: flex;
    align-items: center;
    font-size: 35px;
    font-weight: 600;
}

.container h1 img{
    width: 60px;
}

.container button img{
    width: 25px;
    margin-right: 8px;
}

button {
    position: relative;
    border: none;
    outline: none;
    background-color: #6c5ce7;
    padding: 10px 20px 10px 40px;
    margin: 15px 15px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    border-radius: 5px;
    transition: 0.1s;
    box-shadow: 0px 7px 0px 0px #a29bfe;
  }
  
  button:active {
    transform: translateY(5px);
    box-shadow: 0px 0px 0px 0px #a29bfe;
    
  }

  .input-box{
    position: relative;
    width: 100%;
    max-width: 500px;
    min-height: 150px;
    background: #fff;
    color: #333;
    padding: 20px;
    margin: 20px 0;
    outline: none;
    border-radius: 5px;
}

.input-box img{
    width: 35px;
    position: absolute;
    bottom: 8px;
    right: 8px;
    cursor: pointer;
}

.img1{
    position: absolute;
    top: 18%;
    left: 5%;
}

@media all and (max-width: 1000px) {

     .btn{
        background-color: rgb(6, 96, 199);
        position: fixed;
        bottom: 3%;
        right: 38.5%;
        font-size: 0px;
        width: 200px;
        height: 200px;
        border-radius: 25%;
        z-index: 100;
        transition: 1ms;
     }

     button:active {
        transform: translateY(8px);
        box-shadow: 0px 0px 0px 0px #a29bfe;
        transition: 1ms;
      }
    

    .container button img {
        position: absolute;
        top: 25%;
        left: 30%;
        width: 90px;
        transition: none;
    }
    
    }  
