/* Desktop */
@media only screen and (min-width: 992px) {
  /* Your desktop styles here */
  html {
    color: darkred;
    font-size: 16px;
    text-align: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
  }

  #imgLogo {
    width: 100%;
    display: flex;
    margin:auto;
  }
}

/* Tablet */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  /* Your tablet styles here */
  html {
    color: darkred;
    font-size: 16px;
    text-align: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
  }

  #imgLogo {
    width: 100%;
  }
}

/* Mobile phone */
@media only screen and (max-width: 767px) {
  /* Your mobile phone styles here */
  html {
    color: darkred;
    font-size: 16px;
    text-align: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
  }

  h2 {
    font-size: 2em;
  }

  #imgLogo {
    width: 100%;
  }
}

h3 {
  width: 100%;
  text-align: center;
  margin: auto;
}

h3 img {
  text-align: center;
  margin: auto;
  width: 90%;
  max-width: 340px;
}

li {
  line-height: 3rem;
  margin: 2rem auto;
  display: block;
}

li a:hover {
  background-color: darkred; /* Change this to the color you want */
  color: white;
}

a {
  font-size: 14px;
  width: fit-content;
  padding: 0.5rem;
  color: darkred;
  text-decoration: none;
  border: 2px solid darkred;
  border-radius: 8px;
  cursor: pointer;
  margin: 1rem 16px 1rem 16px;
}

a:hover {
  background-color: darkred;
  color: white;
  text-decoration: none;
}

a:visited {
  color: darkred;
  background-color: white;
  text-decoration: none;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}

footer ul {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menurows {
  display: flex;
  gap: 1rem;
  font-size: 13px;
}

.row {
  display: flex;
  margin: 1.25rem 1.0rem;
}

.column {
  gap: 1rem;
}


#pMsg {
  width: fit-content;
  max-width: 400px;
  padding: 1.5rem;
  text-align: center;
  margin: 2rem auto;
  border: 2px solid darkred;
  border-radius: 8px;
}

#ulLinkButtons {
  display: flex;
  /* justify-content: center; */
  align-items: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

#ulLinkButtons li {
  display: block;
  margin: 0 1rem;
}

#tblLinks td {
  height: 2.5em;
  padding: 6px;
}

#lblAudio {
  display: block;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  background-color: white;
  color: darkred;
  border: 3px solid black;
  border-radius: 6px;
}