::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-button {
  background-color: #191919;
}

::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb {
  background-color: rgba(255, 221, 85, 0.7);
}

body {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
      grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: row;
  grid-gap: 1rem;
  background-color: #191919;
}

body h1 {
  font-size: 3rem;
}

body h2 {
  font-size: 2.5rem;
}

body h3 {
  font-size: 2.2rem;
}

body h4 {
  font-size: 2rem;
}

body h5 {
  font-size: 1.8rem;
}

body h6 {
  font-size: 1.5rem;
}

body p, body a, body i {
  font-size: 1.2rem;
}

body header, body nav, body main, body footer {
  background-color: #282828;
  display: -ms-grid;
  display: grid;
}

body header {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 12;
  grid-area: 1 / 1 / 2 / 13;
  min-height: 10rem;
}

body nav {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 12;
  grid-area: 2 / 1 / 3 / 13;
  min-height: 3rem;
}

body main {
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 12;
  grid-area: 3 / 1 / 4 / 13;
  min-height: 35rem;
}

body footer {
  -ms-grid-row: 4;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 12;
  grid-area: 4 / 1 / 5 / 13;
  min-height: 10rem;
}

body main #myAnimation {
  position: relative;
  width: 10rem;
  height: 5rem;
  background-color: #ffdd55;
  margin: 2rem;
}
/*# sourceMappingURL=style.css.map */