/* mikhan.com - Static Site Styles */
/* Faithfully recreated from WordPress theme: mikhan */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  color: #000;
  font-family: 'Avenir LT Std', 'Avenir', 'Avenir Next', -apple-system, 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
}

a {
  color: inherit;
  text-decoration: none;
}

li {
  list-style: none;
}

hr {
  margin: 1rem 0;
  border: none;
  border-top: 1px solid #ddd;
}

/* ============= Layout ============= */

.site {
  padding: 2rem 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ============= Navigation ============= */

.menu {
  display: flex;
  padding: 2rem 0;
}

.menu li {
  margin-right: 20px;
}

.menu li a {
  font-size: 20px;
}

.menu li a:hover {
  color: rgb(58, 21, 192);
}

/* ============= Homepage ============= */

.hero-content {
  max-width: 70rem;
  padding-top: 8rem;
}

.hero-content h1 {
  font-size: 22px;
  line-height: 1.5;
}

.hero-content h1 .reveal {
  position: relative;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}

.hero-content h1 .reveal::after {
  content: '';
  position: absolute;
  border-bottom: .07em solid rgb(58, 21, 192);
  bottom: 1px;
  right: 0;
  left: 0;
  z-index: -1;
}

.hidden {
  display: none;
}

.full-name {
  padding-left: 7px;
}

/* ============= Subpages ============= */

#primary {
  padding-top: 4rem;
}

.single-title {
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 3rem;
}

.single h3 {
  margin: 18px 0 3px 0;
}

.single p {
  margin: 4px 0;
}

.cat-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 10px;
}

.single strong {
  font-family: 'Roboto', sans-serif;
  font-weight: 800;
  margin-bottom: 10px;
}

.single em {
  margin-bottom: 6px;
  display: inline-block;
}

.single em a {
  position: relative;
  color: rgb(34, 32, 32);
  border-bottom: 0.5px solid rgb(58, 21, 192);
  transition: all ease .3s;
}

.single em a::after {
  content: '';
  position: absolute;
  height: 0;
  width: 101%;
  left: 0;
  bottom: 0;
  background-color: rgba(58, 21, 192, 0.2);
  transition: all ease .3s;
}

.single em:hover a::after {
  height: 100%;
}

/* About page link style */
.link-underline {
  border-bottom: 1px solid rgb(58, 21, 192);
}

.link-underline:hover {
  color: rgb(66, 65, 65);
}

/* ============= Footer ============= */

.credits {
  padding-top: 15rem;
  font-weight: 600;
  font-size: 12px;
}

#primary .credits {
  padding-top: 5rem;
}

/* ============= Spacer ============= */

.spacer {
  height: 7px;
}

.spacer-lg {
  height: 10px;
}

/* ============= Responsive ============= */

@media screen and (min-width: 426px) {
  .site {
    padding: 2rem 20px 20px 20px;
  }

  .hero-content h1,
  .single-title {
    font-size: 2.5rem;
    line-height: 1.25;
  }
}
