*{
    margin:0%;
    padding-top:10px;
    padding-bottom:10px;
}

body{
    background-color:aqua;
    animation-name: display;
    animation-duration:10s;
    animation-timing-function:ease-in-out;
    animation-iteration-count:infinite;
    animation-direction:alternate-reverse;
}
@keyframes display{
    0% {background-color:rgb(76, 244, 244);}
    20% {background-color:rgb(248, 125, 81);}
    40% {background-color:rgb(65, 65, 248);}
    60% {background-color:rgb(249, 54, 54);}
    80% {background-color:rgb(102, 251, 184);}
    100% {background-color:rgb(248, 95, 200);}
}
.Heading{
    font-size: 30px;
    text-align: center;
}
#type{
    padding-left:30px;
    color:white;
    text-shadow:5px 1px 6px rgb(255, 0, 0);
    font-size:20px;
}
textarea{
    font-size:20px;
    width:100%; padding:12px; border:1px solid black; border-radius:20px;
    box-sizing:border-box; margin-top:6px; margin-bottom:20px; resize:vertical;
}
#Submission{
    color:yellow;
    padding-left:1%;
}
.Submit{
    cursor:pointer;
    font-size:30px;
    background-color: rgb(0, 255, 51);
    border-radius:10px;
    color:yellow; padding:2px; border:1px solid black;
    margin-top:1px; margin-bottom:2px; resize:vertical;
}