body{
    padding: 0%;
    margin: 0%;
    font-family:sans-serif, poppins;
    background: linear-gradient(45deg, #010758, #490d11);
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
textarea::-webkit-scrollbar{
    width: 2rem;
}

.heading{
    cursor:context-menu;
    color: white;
    display: grid;
    text-align: center;
    font-size: 1.42rem;
}
.div{
    display: grid;
    align-items: center;
}
.txt{
    margin: auto;
    position: relative;
    display: inline;
    align-items: center;
}
.btn{
    margin: auto;
    position: relative;
    display:table;
    align-items: center;
    margin-bottom: 5.14%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn button{
    margin: 3px;
}
.button{
    display: grid;
    align-items: center;
}
textarea{
    font-size: 1rem;
    border: none;
    outline: none;
    padding: 15px;
    color: #fff;
    background-color: rgba(64, 61, 132, .3);
    resize: none;
    border-radius: 20px;
    margin: 40px;
    font-family: Arial, Helvetica, sans-serif;
}
textarea::placeholder{
    color: #fff;
}
.button1{
    font-size: larger;
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgb(249, 51, 90);
    padding: 20px;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    outline: none;
    margin-right: 10px;
    transition: .3s ease-in-out;
}
.button1:hover{
    transform: scale(1.09);
}
.button2{
    font-size:large;
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgb(249, 51, 90);;
    padding: 21px;
    outline: none;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 10px;
    margin-right: 10px;
    cursor: pointer;
    border: none;
    transition: .3s ease-in-out;
}
.button2:hover{
    transform: scale(1.09);
}
.button3{
    font-size:large;
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgb(249, 51, 90);;
    padding: 21px;
    outline: none;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    transition: .3s ease-in-out;
}
.button3:hover{
    transform: scale(1.09);
}
footer {
    cursor: default;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    padding: 7px;
    position:relative;
    max-width: 100%;
    bottom: 0;
}
a {
    margin: 5px;
    color: white;
}
@media (max-width: 600px){
    footer{
        position: static;
        max-width: 97vw;
    }
}
span{
    color: rgb(249, 51, 90);
    text-decoration: underline;
}
@media only screen and (max-width: 600px) {
    textarea {
      max-width: 70vw;
    }
    .btn{
        flex-direction: column;
    }
    .btn button{
        width: 60vw;
    }
  }