* {
  font-family: "Roboto Mono", monospace !important;
}

p {
  text-align: justify;
}

header {
  border-bottom: 1px solid #e4e5e7;
}

header.container {
  padding-top: 0;
  padding-bottom: 0;
}

.article {
  display: flex;
  justify-content: space-between;
}

nav a.live {
  cursor: default;
  text-decoration: underline;
}

footer {
  display: flex;
  width: 100%;
  justify-content: center;
}

.presentation {
  display: flex;
  gap: 2rem;
}

.scnd-header {
  display: flex;
  width: 100%;
  justify-content: center;
}

.article-header {
  padding-bottom: 2rem;
}

.brand {
  display: flex;
  gap: 8px;
  align-items: center;
}

.logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.personal-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  display: block;
  border-radius: 25px;
}

.brand h4 {
  margin: 0;
  line-height: 1;
  padding: 0;
}

.contact-row {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.article {
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.article:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.25);
}

.project header {
  font-size: 30px;
  text-align: center;
}

.project-description {
  display: flex;
  flex-direction: column;
}

.project-description a {
  text-align: center;
}

.double-column {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}

#body {
  height: 20rem;
}

.lang-switch a {
  opacity: 0.5;
  text-decoration: none;
  font-weight: 500;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.lang-switch a.active {
  opacity: 1;
  text-decoration: underline;
}
.article-headertop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 768px) {
  nav {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  nav > ul {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  nav > ul:first-child {
    justify-content: center;
  }

  nav > ul:last-child {
    gap: 0.5rem;
  }

  nav li {
    white-space: nowrap;
  }
}
.stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
