@import url('https://fonts.googleapis.com/css?family=Muli&display=swap');

/* --- */

*,
*::before,
*::after {

  padding: 0;

  box-sizing: border-box;
}

/* --- */

html {
  margin: 30px 15px;
  font-size: 16px;

}

body {
  

  font-family: 'Muli', sans-serif;


  background-color: rgba(255, 218, 185, 0.178);
}

h1 {
  font-size: 44px;
  color: brown;
  text-shadow: 1px 1px 2px black;
}

p {

  margin: 10px;
}

.intro {
margin-bottom: 10px;
line-height: 28px;
}

.column {
  text-align: left;
  float: left;
  width: 50%;
  line-height: 26px;

}

.border-right {
  border-right: 1px dotted darkgray;
}