small {
  font-size: 0.875rem;
}

i, em, .italic {
  font-style: italic;
}

b, strong, .bold {
  font-weight: 600;
}

h1, .h1 {
  font-size: 2em;
  font-weight: lighter;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  line-height: initial;
  color: #f5f5f5;
}

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

html, body {
  height: 100%;
}

html {
  font-size: 100%;
  background-color: #fff;
}

body {
  font-family: system-ui, BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: none;
}

.content {
  display: block;
  margin: 0;
  padding: 0;
  height: 100%;
}

.inner {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .inner {
    flex-direction: row;
  }
}

.me {
  flex-basis: 50%;
  padding: 0;
  background-image: url("/images/me.jpg");
  background-color: purple;
  background-size: 100%;
  background-repeat: no-repeat;
}

.over_me {
  flex-basis: 50%;
  background: linear-gradient(to bottom, #cd69c9 0%, purple 40%);
  padding: 5%;
}
.over_me h2 {
  font-size: 5em;
  font-weight: bold;
  font-family: "Roboto Condensed", sans-serif;
  line-height: initial;
  text-transform: uppercase;
  color: #f5f5f5;
  margin: 0;
}
.over_me p {
  font-size: 2em;
  font-weight: lighter;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  line-height: initial;
  color: #f5f5f5;
}
.over_me p a {
  color: #f5f5f5;
  text-decoration: none;
}
.over_me p a:hover {
  color: aqua;
}

h2 {
  transform: translateY(-600px);
  -webkit-animation: 1.2s slideIn ease-in-out forwards 1s;
          animation: 1.2s slideIn ease-in-out forwards 1s;
  z-index: 10;
  opacity: 0;
  position: relative;
}

@-webkit-keyframes skewBg {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes skewBg {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes underline {
  100% {
    width: 100%;
  }
}
@keyframes underline {
  100% {
    width: 100%;
  }
}
@-webkit-keyframes slideIn {
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes slideIn {
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

/*# sourceMappingURL=style.css.map */