@font-face{
      font-family: 'dreamOrphans';
  src: url(/fonts/DreamOrphans.ttf) format("truetype");
}

html, body {
  padding:0;
  margin:0;
}

body {
  background-color: pink;
  background-image: url('chicago/bg.png');
  background-repeat: repeat;
  color: DarkRed;
  font-size: 16px;
  margin:20px;
}

section {
  background-color: IndianRed;
  width: 900px;
  height: auto;
  border: 2px;
  border-color: DarkRed;
  font-family: "dreamOrphans";
  font-size: 16px;
  line-height: 1.6;
}

.title {
  background-color: IndianRed;
  height: 100px;
  width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: underline;
  border: 2px;
  border-color: DarkRed;
}

.title {
  font-family: "ritzyRemix";
  font-size: 36px;
}

.red:link {
  color: DarkRed;
  text-decoration: none;
}

.red:visited {
  color: DarkRed;
  text-decoration: none;
}

.red:hover {
  color: Crimson;
}

.red:active {
  color: DarkRed;
  text-decoration: none;
}