/* ------------------------- LABEL ------------------------- */
/* ------------------------- DOCUMENT SETUP ------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100%;
  height: 100%;
  background-color: #FCFCFC;
  color: #282828;
  margin: 0px;
  padding: 0px;
  text-align: left;
  font-family: "Mulish", sans-serif;
  font-size: 17.5px;
  font-weight: 500;
  line-height: 1.5em;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* ------------------------- COVER PAGE ------------------------- */
.page {
  width: 100%;
  height: 100vh;
  padding: 0px;
  margin: 0px auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
}

.leftside {
  width: 49%;
  margin-top: 120px;
  text-align: right;
  padding-right: 20px;
}

.leftside img {
  width: 320px;
}

.rightside {
  width: 50%;
  margin-top: 180px;
  text-align: left;
  padding-left: 20px;
}

.nameField {
  font-family: "Mulish", sans-serif;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -1px;
  margin-bottom: 22px;
  opacity: 0;
  animation: floatUp 0.7s ease-out forwards;
}

.entry {
  margin-bottom: 15px;
  opacity: 0;
  line-height: 1.3em;
  animation: floatUp ease-out forwards;
}

.titleline {
  opacity: 0.4;
}

.menu {
  margin-top: 40px;
  margin-left: -8px;
}

.menu-icon {
  display: inline-block;
  width: 38px;
  height: 38px;
  padding: 5px;
  margin: 0px;
  color: #282828;
  opacity: 0;
  border: 1px solid;
  border-color: transparent;
  border-radius: 5px;
  background-color: transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.menu-icon:hover {
  border-color: rgb(34, 83, 160);
  background-color: rgba(34, 83, 160, 0.05);
  transition: color 0.3s ease, border-color 0.3s ease;
}

/* ------------------------- SVG ------------------------- */
.menu-icon svg {
  width: 26px !important;
  height: 26px !important;
  min-width: 26px; /* Prevent shrinking */
  min-height: 26px;
  color: #282828;
}

/* ------------------------- ANIMATIONS ------------------------- */
@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.rightside .entry:nth-child(1) {
  animation-delay: 0.1s;
  animation-duration: 0.3s;
}

.rightside .entry:nth-child(2) {
  animation-delay: 0.2s;
  animation-duration: 0.4s;
}

.rightside .entry:nth-child(3) {
  animation-delay: 0.3s;
  animation-duration: 0.5s;
}

.rightside .entry:nth-child(4) {
  animation-delay: 0.4s;
  animation-duration: 0.6s;
}

.menu .menu-icon:nth-of-type(1) {
  animation-delay: 0.4s;
  animation-duration: 0.3s;
  animation-name: floatUp;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.menu .menu-icon:nth-of-type(2) {
  animation-delay: 0.5s;
  animation-duration: 0.4s;
  animation-name: floatUp;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.menu .menu-icon:nth-of-type(3) {
  animation-delay: 0.6s;
  animation-duration: 0.5s;
  animation-name: floatUp;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.menu .menu-icon:nth-of-type(4) {
  animation-delay: 0.7s;
  animation-duration: 0.6s;
  animation-name: floatUp;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.menu .menu-icon:nth-of-type(5) {
  animation-delay: 0.8s;
  animation-duration: 0.7s;
  animation-name: floatUp;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.menu .menu-icon:nth-of-type(6) {
  animation-delay: 0.9s;
  animation-duration: 0.8s;
  animation-name: floatUp;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

/* ------------------------- LINKS ------------------------- */
.entry a, .entry a:visited, .entry a:active {
  color: #282828;
  text-decoration: none;
  padding: 0px 4px 0px 4px;
  margin: 0px -4px 0px -4px;
  border-bottom: 1px solid;
  border-color: transparent;
  border-radius: 3px;
  background-color: transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.entry a:hover {
  border-color: rgb(34, 83, 160);
  background-color: rgba(34, 83, 160, 0.05);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.menu-icon a, .menu-icon a:visited, .menu-icon a:active {
  text-decoration: none;
  border: none;
}

a, a:visited, a:active {
  color: #282828;
  text-decoration: none;
  padding: 0px 4px 0px 4px;
  margin: 0px -4px 0px -4px;
  border-bottom: 1px solid;
  border-color: rgba(34, 83, 160, 0.5);
  border-radius: 3px;
  background-color: transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

a:hover {
  border-color: rgb(34, 83, 160);
  background-color: rgba(34, 83, 160, 0.05);
  transition: color 0.3s ease, border-color 0.3s ease;
}

/*--------------------------------- MOBILE -------------------------------------------*/
@media only screen and (max-width: 815px) {
  body {
    font-size: 19.5px;
  }
  .page {
    display: inline-block;
    width: 98%;
    padding-top: 65px;
  }
  .leftside, .rightside {
    width: 100%;
    text-align: center;
  }
  .leftside {
    margin: 30px auto 0px auto;
    padding: 0px;
  }
  .rightside {
    margin-top: 40px;
  }
  .leftside img {
    width: 80%;
  }
  img[src*="#whole"] {
    width: 100%;
    height: 100%;
  }
  img[src*="#half"] {
    width: 100%;
    height: 100%;
  }
  img[src*="#third"] {
    width: 100%;
    height: 100%;
  }
  iframe {
    width: 100%;
  }
  .verticalSpacer {
    height: 4px;
  }
  .content {
    width: 90%;
    margin: 35px auto;
    padding: 0;
  }
}

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