/*FONTS*/
@font-face {
  font-family: combine;
  src: url(../fonts/Combine.otf);
}

/*VARIABLES*/
body {
  width: 100%;
  display: -ms-grid;
  display: grid;
  position: relative;
  background-color: white;
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
  z-index: 1;
}

header, article {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
}

/*TITLE*/
.title {
  position: fixed;
  text-align: center;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: table-cell;
  vertical-align: middle;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

h1 {
  font-family: combine;
  text-transform: uppercase;
}

h1 .master {
  font-family: 'Yatra One', cursive;
  font-size: 1.2em;
}

/*ARTICLES*/
article {
  z-index: 0;
  position: absolute;
}

article .leopold {
  color: coral;
  height: 1600px;
}

article .colonies {
  text-align: right;
  color: #badbff;
  height: 650px;
}

article .africa {
  color: lightgreen;
}

article svg {
  max-width: 80%;
  stroke-width: 0.9px;
}

.leopold {
  stroke: coral;
}

.africa {
  stroke: lightgreen;
}

.colonies {
  stroke: #badbff;
}

@media print {
  @page {
    size: 297mm 420mm;
  }
  body {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    border: 0;
    -webkit-print-color-adjust: exact;
    font-size: 1.5em;
    color: white;
    background: #3f5efb;
    background: radial-gradient(circle, #3f5efb 24%, #e3c65a 73%, #fc466b 89%);
  }
  .content {
    width: 100%;
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }
  .title {
    width: 100%;
  }
  .master {
    text-decoration: line-through;
  }
  article {
    position: absolute;
    padding: 20;
  }
  article .leopold {
    height: 100%;
    position: relative;
    top: 0;
  }
  article .leopold .africa {
    display: none;
  }
  svg {
    stroke-width: 0.9px;
  }
  .leopold {
    stroke: white;
  }
  .africa {
    stroke: white;
  }
  .colonies {
    stroke: white;
  }
  .colonies {
    margin-top: 0cm;
    height: 200px;
  }
}
/*# sourceMappingURL=style.css.map */