/* global theme*/
body {
  background-repeat: inherit;
  background-attachment: scroll;
  background-size: 120rem;
  background-position-y: -10rem;
  font-family: "Comic Relief", system-ui;
  font-weight: 400;
  font-style: normal;
  margin: 3rem;
  background-color: #131313fa;
  color: rgb(209, 209, 209);
}

  /* latest video section */
.latest-video-section h3 {
  text-align: center;
  text-decoration: underline;
  margin-bottom: 1rem;
  text-decoration: none;
}

.video-wrapper {
  display: flex;
  justify-content: center;
}

.video-wrapper iframe {
  max-width: 50%;
  border-radius: 12px;
}

/* fancy divider */
.divider {
  border: 0;
  height: 5px;
  background-color: #2222229d;
  margin: 2rem 0;
}

* Languages section */
.languages-section h3 {
  text-align: center;
  text-decoration: underline;
  margin-bottom: 1rem;
  text-decoration: none;
}

.languages-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.language-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.language-item img {
  width: 80px;
  height: auto;
  margin-bottom: 0.5rem;
  border-radius: 8px;
}

.language-item span {
  color: aliceblue;
  font-weight: 500;
}

