form {
  border-radius: 5px;
  background-color: #E3DFDE;
  margin: 20px auto; 
  padding: 35px;
  width: 90%;
}

aside {
	background: #E3DFDE;
	font-size: 120%;
	padding: 5px 0;
	text-align: center;
	width: 100%;
}

/* Style the links in the aside section */
aside a {
	color: #4B3C35;
	display: block;
	padding: 5px 0;
	text-decoration: none;
	width: 100%;
}

/* Change the color of aside links on hover using mouse */
aside a:hover {
	background-color: #4B3C35;
	color: white;
}


/* Change the color of aside links on focus using tab key */
aside a:focus {
  background-color: #4B3C35;
  color: #E3DFDE;
  outline: none;
}

form textarea {
  width: 100%;
  height: 150px;
}

input {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #E3DFDE;
  border-radius: 4px;
  box-sizing: border-box;
}

button {
  width: 100%;
  background-color: #63493d;
  color: #E3DFDE;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover, button:focus {
  filter: brightness(125%);
}

@media only screen and (min-width: 600px) {
    form {
    width: 70%;
  }
}

@media only screen and (min-width: 768px) {
  form {
    width: 50%;
  }
}

@media only screen and (min-width: 992px) {
  form {
    width: 40%;
  }
}

@media only screen and (min-width: 1200px) {
    form {
    width: 30%;
  }
}