@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300;400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap");
.debug::before {
  content: '';
  display: block;
  background: red;
  height: 100%;
  width: 1px;
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 99;
}

.debug::after {
  content: '';
  display: block;
  background: green;
  height: 1px;
  width: 100%;
  position: fixed;
  top: 50%;
  left: 0;
  z-index: 99;
}

* {
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}

body {
  background-color: #304ffe;
  color: white;
}

.header {
  display: block;
  position: relative;
  background-color: #304ffe;
  font-family: "Roboto Mono", monospace;
  height: 100vh;
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.header-part {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-filter: drop-shadow(0 0 2rem black);
          filter: drop-shadow(0 0 2rem black);
  border-bottom: 2px solid white;
}

.header-part-color {
  display: block;
  width: 400%;
  height: 200%;
  background-color: #2962ff;
  position: absolute;
  left: -150%;
  bottom: -148.5%;
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

@media screen and (min-width: 768px) {
  .header-part-color {
    -webkit-transform: rotate(-65deg);
            transform: rotate(-65deg);
  }
}

@media screen and (min-width: 992px) {
  .header-part-color {
    -webkit-transform: rotate(-75deg);
            transform: rotate(-75deg);
  }
}

.header .header-splash {
  z-index: 3;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}

.header .header-splash .header-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin: 0 auto;
  background-color: #fff;
  color: #000;
  font-size: 1.2rem;
  padding: 0.7rem 4rem;
}

.header .header-splash .header-subtitle {
  font-weight: 300;
  font-size: 1.2rem;
  text-align: center;
  margin-top: 0.5rem;
  letter-spacing: 0.25rem;
}

.footer {
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
  margin-bottom: 1rem;
}

.footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 1rem;
  padding: 0 2rem;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer-links .footer-item {
  width: 4rem;
  margin: 1rem 1rem;
  text-decoration: none;
}

.footer-links .footer-item img {
  display: block;
  height: 3.25rem;
  width: 3.25rem;
  margin-left: auto;
  margin-right: auto;
}

.footer-links .footer-item p {
  color: white;
  text-align: center;
}

@-webkit-keyframes arrow {
  from {
    -webkit-transform: translate(0, -0.5rem);
            transform: translate(0, -0.5rem);
  }
  to {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes arrow {
  from {
    -webkit-transform: translate(0, -0.5rem);
            transform: translate(0, -0.5rem);
  }
  to {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

.footer-arrow {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-animation-name: arrow;
          animation-name: arrow;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}

.footer-arrow::after {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  border-bottom: 2px solid white;
  border-left: 2px solid white;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.projects {
  display: block;
  overflow: auto;
  position: relative;
  background-color: #304ffe;
  padding: 4rem 2.5rem;
}

@media screen and (min-width: 768px) {
  .projects {
    padding: 4rem 15%;
  }
}

@media screen and (min-width: 992px) {
  .projects {
    padding: 4rem 25%;
  }
}

.projects h1.projects-title {
  margin-bottom: 1.75rem;
}

.projects .project {
  background-color: white;
  overflow: auto;
  color: black;
  padding: 2rem;
  -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.75);
          box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.75);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2rem;
}

.projects .project a {
  color: #304ffe;
  text-decoration: none;
}

.projects .project a:visited {
  color: #304ffe;
}

.projects .project a:hover h1::after {
  width: 100%;
}

.projects .project a h1 {
  margin-bottom: 0.5rem;
}

.projects .project a h1::after {
  content: '';
  width: 0%;
  height: 2px;
  display: block;
  background: #304ffe;
  margin-top: -0.2rem;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

h1, h2, h3 {
  font-weight: 500;
}

h1, h2, h3, p {
  padding: 0;
  margin: 0;
}
/*# sourceMappingURL=main.css.map */