body {
  box-sizing: border-box;
  font-size: 100%;
  font-family: "Roboto", sans-serif;
  background: #c9d6ff;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, #e2e2e2, #c9d6ff);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, #e2e2e2, rgb(206, 218, 255));
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  margin: 20px auto;
  padding: 20px auto;
  max-width: 800px;
  min-width: 600px;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

#title {
  color: green;
  font-family: "Lobster", "Impact", "sans-serif";
  /*  font-family: 'Bree Serif', serif; */
  text-align: center;
  margin: 40px;
}

.indent {
  margin-left: 40px;
}

.less-indent {
  margin-left: -40px;
}

.bold {
  font-weight: bolder;
}

li {
  margin: 10px;
}

.code {
  background-color: rgb(88, 206, 10);
  margin: 30px;
  padding: 50px 80px;
  font-family: monospace;
  font-size: 110%;
  font-weight: 700;
  border-radius: 10px;
  border: 5px green solid;
}

h1 {
  text-align: center;
  margin: 40px;
  font-family: "Montserrat", sans-serif;
}

h2 {
  font-family: "Montserrat", sans-serif;
  margin: 20px;
}

.div-h3 {
  margin-left: 50px;
  border-bottom: 4px darkslategray solid;
  border-radius: 30px;
}

h3 {
  padding-left: 40px;
}

h4 {
  margin: 30px;
}

hr {
  color: green;
  background-color: green;
  height: 2px;
  border-radius: 20px;
  margin-top: 80px;
  margin-bottom: 80px;
  width: 500px;
}

.box1 {
  background-color: blue;
  color: white;
  height: 100px;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.box2 {
  background-color: green;
  color: white;
  height: 100px;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.box3 {
  background-color: red;
  color: white;
  height: 100px;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.box {
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.box-size {
  border: 1px black solid;
  flex: initial;
}

.box-border {
  border: 2px black solid;
}

.baseline-box {
  color: white;
  background-color: purple;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px black solid;
  flex: 0 0 auto;
  padding: 50px 0px 10px 20px;
}

.rebel {
  color: red;
}

.box-red {
  background-color: red;
}

.box-orange {
  background-color: orange;
}

.box-black {
  background-color: rgba(0, 0, 0, 0.692);
}

.box-dimension {
  font-family: "Lobster", "Impact", "sans-serif";
  width: 300px;
}

.box-dimension2 {
  height: 100px;
  width: 150px;
}

.box-blue {
  background-color: blue;
}

.box-green {
  background-color: green;
}

.box-purple {
  background-color: purple;
  padding: 50px 0px 10px 20px;
}

.flexbox {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.flex-column-reverse {
  flex-direction: column-reverse;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-justify-space {
  justify-content: space-evenly;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-nosquish {
  flex: 0 0 auto;
}

.flex-space-between {
  justify-content: space-between;
}

.cage {
  width: 600px;
  height: 300px;
}

.flex-initial {
  flex: initial;
}

.flex-auto {
  flex: auto;
}

.flex-none {
  flex: none;
}

.flex-2 {
  flex: 2;
}

.flex-4 {
  flex: 4;
}

.flex-8 {
  flex: 8;
}

.flexCenter {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flexTable {
  flex-direction: column;
  align-items: flex-start;
}

.blue-dimension {
  height: 70px;
}

.green-dimensions {
  height: 300px;
}

.gradient-separator {
  background-image: linear-gradient(to right, green, rgb(27, 207, 27));
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  margin: 0px 200px;
  height: 20px;
}
