* {
  box-sizing: border-box;
}

:root {
  --orange: #feac5e;
  --purple: #c779d0;
  --white: #fff;
  --grey: #d9d9d9;
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

header {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--orange);
  color: var(--white);
  text-transform: uppercase;
}

.boxes-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1rem;
}

.box {
  display: flex;
  flex-direction: column;
  width: 25%;
  height: 200px;
  margin: 1.75rem;
  padding: 1rem;
  font-weight: 700;
  font-size: 2rem;
}

.box-header,
.box-footer {
  display: flex;
  justify-content: center;
}

.box-header {
  height: 50%;
  justify-self: flex-start;
  align-items: center;
  color: var(--purple);
  font-size: 4rem;
}

.box-footer {
  height: 50%;
  justify-self: flex-end;
  align-items: flex-end;
  color: var(--grey);
  font-size: 3rem;
}

.form-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.box,
#paragraph {
  box-shadow: 0px 3px 20px var(--grey);
  border-radius: 10px;
}

#paragraph {
  width: 80.33%;
  height: 330px;
  padding: 1rem;
  resize: none;
  border: none;
  font-size: 1.5rem;
}

.submit-button {
  width: 25%;
  height: 50px;
  border: 0;
  background-color: var(--orange);
  color: var(--white);
  border-radius: 4px;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0px 3px 10px var(--grey);
}
