.roboto-condensed-light {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.roboto-condensed-regular {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body {
  margin: 0;
  font-family: "Roboto Condensed", Arial, sans-serif; /* Fallback font for the body */
  background-color: black;
  color: white;
}

p {
  font-size: 1.3rem;
}

audio {
  display: none;
}

.sound {
  position: fixed;
  left: 20px;
  top: 10px;
}
.interactive {
  display: flex;
  flex-direction: row;
}

.interactiveitem {
  padding-left: 5px;
  font-size: 20pt;
}

.bannercontainer {
  display: flex;
  width: 100vw;
  padding-top: 5vh;
  justify-content: center; /* Centers horizontally */
  align-items: center;
}

.banner {
  display: flex; /* Make the banner a flex container */
  color: white;
  text-align: center; /* Center the text within the entire banner */
  height: 12vh;
  width: 900px;
  min-width: 600px;
}

.flag {
  height: 100%; /* Make segments take the full height of the banner */
  align-content: center;
}

.black {
  background-color: black;
  width: 40%;
  border-radius: 45% 0% 0% 45%;
  border: solid white 1px;
}

.red {
  background-color: #ff0000;
  width: 20%;
  border: solid white 1px;
}

.gold {
  background-color: #ffcc00;
  width: 40%;
  border-radius: 0% 45% 45% 0%;
  border: solid white 1px;
}

.banner h1 {
  margin: 0;
  font-size: 4rem;
  font-family: "Roboto Condensed", sans-serif; /* Apply to the specific element */
  font-weight: 700; /* Example weight */
}

img {
  height: 20vh;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 0;
  margin-bottom: 0;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 2vh;
  font-size: 1.5rem;
}

.prevLesson,
.nextLesson {
  padding-left: 2vw;
  padding-right: 2vw;
}

@media (max-width: 1224px) {
  /*Tablets*/
  .bannercontainer {
    padding-top: 2%;
  }

  .banner {
    display: flex; /* Make the banner a flex container */
    color: white;
    text-align: center; /* Center the text within the entire banner */
    height: 15vh;
    width: 50%;
  }

  .banner h1 {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  /*Phones*/
  .banner {
    display: flex; /* Make the banner a flex container */
    color: white;
    text-align: center; /* Center the text within the entire banner */
    height: 11vh;
    width: 97%;
    min-width: 97%;
    margin-top: 25px;
  }

  .interactive {
    padding-right: 21vw;
    margin: 0px;
  }

  .interactiveitem {
    padding-left: 1px;
    font-size: 15pt;
  }

  .content {
    margin: 3vw;
    margin-bottom: 0;
  }
  .banner h1 {
    font-size: 1.9rem;
  }

  .example {
    padding-left: 5vw;
  }

  p {
    font-size: 1.1rem;
    margin: 2%;
  }

  footer {
    margin-top: 0;
    position: fixed;
    bottom: 0;
    left: 50%;
    right: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 0;
    margin-bottom: 5%;
  }

  .sound {
    position: fixed;
    left: 2px;
    top: 2px;
  }
}
