/* Box Model Hack */
* {
     box-sizing: border-box;
}

/* Clear fix hack */
.clearfix:after {
     content: ".";
     display: block;
     clear: both;
     visibility: hidden;
     line-height: 0;
     height: 0;
}

.clear {
	clear: both;
}


body {
     background-color: rgb(0, 0, 0);
}

body > * {
     display: flex;
     flex-direction: column;
     justify-items: center;
     align-items: center;
     color: goldenrod;
     margin: 20px auto;
     width: 500px;
     gap: 30px;
}

h1 {
     font-weight: 600;
     font-size: 2rem;
     font-style: italic;
}

i {
     font-size: 100px;
}

form {
     display: flex;
     height: 3rem;
     border-radius: 4px;
     gap: 20px;
     width: 350px;
     flex-direction: column;
}

textarea {
     padding-bottom: 150px;
}