/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #ACF4F3;
  color: #56433D;
  font-family: 'Georgia', serif;
  background-image: url("https://i.pinimg.com/736x/de/fa/88/defa88565e5a9d0a8b265de30bddba7f.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
}
h1 {
  font-size: 3rem;
  color: #56433D;
  text-align: center;
}
.container {
  max-width: 800px;
  margin: auto;
  padding: 20px;
  background-color: #E7DDFF;
  border-radius: 10px;
}

  .big-box {
  width: 600px;               /* how wide the box is */
  height: 400px;              /* how tall the box is */
  background-color: #F7D7E7;  /* box color */
  border: 3px solid #56433D;  /* border around the box */
  border-radius: 15px;         /* rounded corners */
  padding: 20px;               /* space inside the box */
  margin: 20px auto;           /* center horizontally and add space on top/bottom */
  color: #56433D;                /* text color */
}