/* 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." */

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  border: 0;
}

html {
  background-color: #f1f7ed;
  color: #3e4b54;
}

body {
  font-family: 'Rubik', 'Helvetica Neue', Helvetica, Ariel, sans-serif;
  margin: auto;
  max-width: 900px;
  /*border: 3px solid grey;*/
}

header {
  padding: 3%;
  /*border-bottom: 3px dotted grey;*/
}

/*main {*/
/*  margin: 3% 0 3% 0;*/
/*}*/

section {
  padding: 3%;
}
    
h1 {
  font-size: 2rem;
}
    
h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
}

p {
  color: red;
}

hr {
  border-top: 3px dotted grey;
  margin: 6px 0px 6px 0px;
}

footer {
  padding: 3%;
}