*Centering Code*/

.center {
  position: relative;
  height: 150px;
  background: #FFCEC2;
}

.center div {

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;

} 
.center div p {
text-align: center;
  width:400px;
}

/* Styling */

body {
  margin: auto;
  width: 640px; 
  padding: 50px;
  font-family: "Poetsen One", sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size:40px;  
}

.red {
 color: red; 
}

.green {
 color: green; 
}