/* 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: rgb(174, 205, 173);
  color: black;
  font-family: Verdana;
}

.main {
  background-color: white;
  float: auto;
  margin: auto;
  margin-top:40px;
  width: 60%; /* The width is 60%, by default */
  max-width: 700px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.maintext {
  padding: 20px;
}

.maintext li {
  padding: 5px 0px 5px 0px;
}

h3 {
  font-style: italic;
}

/* Use a media query to add a breakpoint at 800px: */
@media screen and (max-width: 800px) {
  .left, .main, .right {
    width: 100%; /* The width is 100%, when the viewport is 800px or smaller */
  }
}