.brand {
	font-family: 'Comfortaa', sans-serif;
}

.rocket-container {
  min-height: 300px;
  overflow: hidden;
  position: relative;
}

.rocket-container img {
  position: absolute;
  height: 100%;
  object-fit: cover;
}

.input-cursor {
  display: inline-block;
  width: 2px;
  margin-right: -2px;
  height: 1.8rem;
  animation: blink .6s linear infinite alternate;
}

.title-page {
  min-height: 500px;
}

#cursor2 {
  display: none;
}

.card {
  box-shadow: 0 6px 10px -4px rgba(0, 0, 0, 0.15);
  -webkit-transition: transform 300ms cubic-bezier(0.34, 2, 0.6, 1), box-shadow 200ms ease;
  -moz-transition: transform 300ms cubic-bezier(0.34, 2, 0.6, 1), box-shadow 200ms ease;
  -o-transition: transform 300ms cubic-bezier(0.34, 2, 0.6, 1), box-shadow 200ms ease;
  -ms-transition: transform 300ms cubic-bezier(0.34, 2, 0.6, 1), box-shadow 200ms ease;
  transition: transform 300ms cubic-bezier(0.34, 2, 0.6, 1), box-shadow 200ms ease;
}

.card:not(.card-plain):hover {
  box-shadow: 0px 12px 19px -7px rgba(0, 0, 0, 0.3);
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
}

.experience-logo {
  height: 80px;
}

.social-logo {
  height: 40px;
}

.byline-social-logo {
  height: 20px;
}

@keyframes blink {
  0% {opacity: 1;}
  40% {opacity: 1;}
  60% {opacity: 0;}
  100% {opacity: 0;}
}

@media (min-width: 992px) {
  .title-page {
      min-height: calc(100vh - 55px);
  }
}
