/* overall page css  */
body {
  height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
}

.content {
  font-family: 'IBM Plex Mono', monospace;
  flex: 1 0 auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
}

hr {
  width: 100%;
  height: 1px;
  background-color: #ddd;
  border: none;
}

.content a {
  color: #3F51B5
}

.title-sm, .title, .title-lg, .title-xlg, h1, h2, h3, h4 {
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 10px;
  color: black;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h4 { 
  font-size: 18px;
  font-weight: 100;
}

.title-sm, h3 { 
  font-size: 20px;
  font-weight: 100;
}

.title, h2 {
  font-size: 24px;
  font-weight: 400;
}

.title-lg, h1 {
  font-size: 36px;
  font-weight: 600;
}

.title-xlg {
  font-size: 60px;
  font-weight: 600;
}

.title a  {
  color: black;
}
.title a:hover {
  text-decoration: none;
  outline: none;
}

@media (max-width: 1450px) {
  .title-lg {
    font-size: 28px;
  }
  .title-xlg {
    font-size: 36px;
  }
}

@media (max-width: 850px) {
  h4 {
    font-size: 14px;
  }
  .title-sm, h3 {
    font-size: 16px;
  }
  .title, h2 {
    font-size: 18px;
  }
  .title-lg, h1 {
    font-size: 20px;
  }
  .title-xlg {
    font-size: 24px;
  }
}

.language {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  margin-bottom: 20px;
  padding-left: 200px !important;
  padding: 0;
}

.language-item {
  margin: 0 10px;
  font-size: 1.2em;
  font-weight: bold;
  text-transform: uppercase;
}

@media (max-width: 1396px) {
  .language {
    display: none;
  }
}

/* end page */