@keyframes fadeInAnimation {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes fadeOutAnimation {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
body {
  margin: 0;
  background-color: #1f2933;
  color: #f7f9fb;
  font-family: Roboto, sans-serif; }

header {
  -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2); }
  header > section#hero {
    background-image: linear-gradient(to right top, #05386b, #5cdb95, #8ee4af);
    width: 100%;
    padding: 30px 0 100px 0;
    text-align: center; }
    header > section#hero > .hero-title {
      animation-iteration-count: 1;
      animation-fill-mode: forwards;
      background-color: #33333333;
      color: #f7f9fb;
      font-size: 16vw;
      margin-bottom: 1rem;
      margin-top: 1rem;
      font-variant: small-caps;
      text-align: center;
      text-shadow: 0.8vw 0.8vw #05386b; }
      @media only screen and (min-width: 768px) {
        header > section#hero > .hero-title {
          font-size: 5em;
          text-shadow: 2px 2px #05386b; } }
    header > section#hero > .hero-subtitle {
      animation: fadeInAnimation ease 3s;
      animation-delay: 1.5s;
      color: #05386b;
      animation-iteration-count: 1;
      animation-fill-mode: forwards;
      opacity: 0;
      font-size: 4vw; }
      @media only screen and (min-width: 768px) {
        header > section#hero > .hero-subtitle {
          font-size: 6vw; } }
      header > section#hero > .hero-subtitle .text-cycle {
        transform: translate(-50%, 0); }
      @media only screen and (min-width: 768px) {
        header > section#hero > .hero-subtitle {
          font-size: 1.5em; } }

@media only screen and (max-width: 991px) {
  .hidden-sm {
    display: none; } }

body > section {
  line-height: 1.5;
  margin: 0 5% 5em 5%; }
  @media only screen and (min-width: 768px) {
    body > section {
      margin: 0 20% 5em 20%; } }
  body > section h1 {
    letter-spacing: 0.1em;
    text-align: center;
    color: #c3c6c9;
    text-shadow: black 0 0 5px; }
  body > section figure {
    text-align: center; }
    @media only screen and (min-width: 992px) {
      body > section figure.sneaky {
        height: 0; }
        body > section figure.sneaky img {
          max-height: 318px; } }
    @media only screen and (max-width: 991px) {
      body > section figure img {
        width: 100%;
        max-width: 400px; } }
    @media only screen and (min-width: 992px) {
      body > section figure img {
        max-width: 100%;
        max-height: 130px; } }
  body > section article.primary-article {
    display: grid;
    margin-bottom: 2.5em; }
    @media only screen and (max-width: 991px) {
      body > section article.primary-article {
        grid-template-rows: 1fr auto; } }
    @media only screen and (min-width: 992px) {
      body > section article.primary-article {
        grid-template-columns: 3fr 2fr; } }
    @media only screen and (min-width: 1200px) {
      body > section article.primary-article {
        grid-template-columns: 2fr 1fr; } }
    body > section article.primary-article .article-content .article-title {
      font-size: 1.2rem;
      font-weight: bold;
      letter-spacing: 0.1em; }
    body > section article.primary-article .article-content .article-subtitle {
      color: #c3c6c9;
      font-style: italic;
      font-size: 0.9rem; }
  body > section .secondary-grid {
    display: grid;
    grid-template-columns: 1fr; }
    @media only screen and (min-width: 768px) {
      body > section .secondary-grid {
        grid-template-columns: 1fr 1fr; } }
    @media only screen and (min-width: 1200px) {
      body > section .secondary-grid {
        grid-template-columns: 1fr 1fr 1fr; } }
    body > section .secondary-grid .secondary-article {
      border-radius: 10px;
      margin: 5%;
      padding: 5%;
      transition: 0.25s;
      -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
      box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
      border: 1px solid #1f2933;
      position: relative;
      background-color: #293643; }
      body > section .secondary-grid .secondary-article.has-link:hover {
        border: 1px solid #8ee4af;
        cursor: pointer;
        -webkit-box-shadow: 0px 9px 11px -5px rgba(0, 0, 0, 0.2), 0px 18px 28px 2px rgba(0, 0, 0, 0.14), 0px 7px 34px 6px rgba(0, 0, 0, 0.12);
        box-shadow: 0px 9px 11px -5px rgba(0, 0, 0, 0.2), 0px 18px 28px 2px rgba(0, 0, 0, 0.14), 0px 7px 34px 6px rgba(0, 0, 0, 0.12); }
      body > section .secondary-grid .secondary-article .article-image {
        width: 100%; }
        body > section .secondary-grid .secondary-article .article-image img {
          width: inherit; }
      body > section .secondary-grid .secondary-article .article-title {
        display: inline-block;
        width: 100%;
        text-align: center;
        padding-top: 3%;
        letter-spacing: 0.1em; }
        body > section .secondary-grid .secondary-article .article-title a {
          text-decoration: none;
          color: #f7f9fb; }
          body > section .secondary-grid .secondary-article .article-title a::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0; }
      body > section .secondary-grid .secondary-article .article-subtitle {
        color: #c3c6c9;
        font-style: italic;
        text-align: center;
        font-size: 0.8em;
        padding-bottom: 3%; }
  body > section p {
    letter-spacing: 0.05em; }
  body > section strong, body > section a {
    color: #e98074; }

#hobby-keyword-cycle {
  display: block; }
  @media only screen and (min-width: 992px) {
    #hobby-keyword-cycle {
      display: inline; } }

.text-cycle {
  opacity: 0;
  transition: opacity 1s, visibility 1s;
  visibility: collapse;
  position: absolute; }
  .text-cycle.shown {
    transition: opacity 1s, visibility 1s;
    transition-delay: 1s;
    opacity: 1;
    visibility: visible; }

form.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr; }
  form.contact-form input, form.contact-form textarea {
    width: 100%;
    background: #1f2933;
    padding: 5px;
    color: #f7f9fb;
    box-sizing: border-box;
    resize: vertical; }
    form.contact-form input, form.contact-form input:focus, form.contact-form input:focus-visible, form.contact-form textarea, form.contact-form textarea:focus, form.contact-form textarea:focus-visible {
      border-top: 0;
      border-right: 0;
      border-left: 0;
      border-bottom: 1px solid #c3c6c9;
      outline: none; }
  form.contact-form .form-input-group {
    grid-column-start: span 2; }
  @media only screen and (min-width: 768px) {
    form.contact-form .form-group-name, form.contact-form .form-group-email {
      grid-column-start: span 1; } }
  form.contact-form .form-group-message {
    grid-column-start: span 2; }
  form.contact-form .form-group-submit {
    grid-column-start: 1 / span 2; }
  form.contact-form input[type=submit] {
    width: 30%;
    background: #379683;
    transition: 0.3s;
    border: 1px solid #1f2933;
    -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2); }
    form.contact-form input[type=submit]:hover {
      background: #5cdb95;
      cursor: pointer;
      -webkit-box-shadow: 0px 9px 11px -5px rgba(0, 0, 0, 0.2), 0px 18px 28px 2px rgba(0, 0, 0, 0.14), 0px 7px 34px 6px rgba(0, 0, 0, 0.12);
      box-shadow: 0px 9px 11px -5px rgba(0, 0, 0, 0.2), 0px 18px 28px 2px rgba(0, 0, 0, 0.14), 0px 7px 34px 6px rgba(0, 0, 0, 0.12); }

footer {
  background: #131313;
  padding: 2% 0;
  text-align: center; }

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