*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

html, body{
    width: 100vw;
    height: 100vh; 

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #f7f7f7;
}


.parent{
    display: flex;
    flex-direction: column;
    margin: 2rem;
}

h1 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 15px;
}

input[type="text"], textarea {
    width: 280px;
    padding: 8px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

textarea{
	height:13rem;
}


label {
    font-size: 1rem;
    color: #333;
}

button{
    padding: 6px;
    width: 200px;
    font-size: 1rem;
    margin: 2rem;
    border: none;
    outline: none;
    background-color: aquamarine;
    border-radius: 5px;
    cursor: pointer;
}

p{
    text-align: center;
}