@import url(https://fonts.googleapis.com/css?family=Khula:700);

body {
  background: #ffffff;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* whole screen */
}

.hidden {
  opacity: 0;
}

.console-container {
  font-family: Khula;
  font-size: 4em;
  text-align: left;
  height: 200px;
  width: 850px;
  display: block;
  position: relative;
  color: white;
  padding-left: 5em;
}
.console-underscore {
  display: inline-block;
  position: relative;
  top: -0.14em;
  left: 10px;
  color: #B6B6B6;
}

/* SVG background image via https://haikei.app/ */
.placeholder {
  aspect-ratio: 960/60;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.flip {
  transform: rotate(180deg);
}
.roundy {
  border-radius: 40% 70% 80% 30% / 40% 30% 70% 70%;
}
.lessroundy {
  border-radius: 5%;
}
.shady {
  width: 250px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3),
              0 6px 20px 0 rgba(0, 0, 0, 0.19);
  text-align: center;
}
.term {
  font-family: 'Consolas';
}
.thumbnail:hover {
  position: relative;
  top: -25px;
  left: -35px;
  width: 500px;
  height: auto;
  display: block;
  z-index: 999;
}
.blurr {
  filter: blur(2px);
  -webkit-filter: blur(2px);
}
.cursive {
  font-family: S;
}

/* Layout fix */
nav.navbar {
  flex: 0 0 auto; /* natural height */
}

.about-section {
  flex: 1 0 auto; /* take remaining space */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 2rem;
  background-size: cover;
  background-position: center;
  gap: 2rem;
  box-sizing: border-box;
}

.bg-blobs {
  background-image: url('/images/haikei/hiervin.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 992px) {
  .about-section {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .about-section {
    flex-direction: column !important;
    text-align: left;
    padding: 1.5rem 1rem;
    gap: 1.25rem;
  }

  .about-section .text-col {
    padding: 0;
  }

  .about-section img {
    max-width: 150px;
    height: auto;
    margin-bottom: 1rem;
  }

  .about-section h2 {
    font-size: clamp(1.25rem, 4vw, 2rem);
    line-height: 1.3;
  }

  .about-section p {
    font-size: clamp(0.9rem, 2vw, 1.1rem) !important;
    line-height: 1.5;
    max-width: 35ch;
  }

  .about-section figcaption {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
}
