#newsTicker{
  height: 100%;
  width: 100%;
  background-color: #fff;
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}
#newsTicker > ul {
  margin-block-start: 0;
  margin-block-end: 0;
  list-style-position: inside;
  height: 2rem;
  width: 100%;
  padding-inline-start: 0;
  overflow: hidden;
}
/* #newsTicker > ul > .news {
  position: relative;
  background-color: red;
} */
#newsTicker > ul > li {
  height: 100%;
  width: 100%;
  display: none;
  overflow: hidden;
}
li.news > a,
li.news > a > span {
  position: relative;
  display: block;
  height: 100%;
  width: fit-content;
  font-size: 1.4rem;
  letter-spacing: 0.2rem;
  line-height: 2rem;
  color: #696969;
}
li.news > a{
  display: block;
  /* left: 10rem; */
}
@media screen and (min-width: 1000px){
  #newsTicker{
    width: 100%;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }
  #newsTicker > ul {
    height: 5rem;
    width: 100%;
  }
  li.news > a,
  li.news > a > span {
    font-size: 1.6rem;
    line-height: 5rem;
  }
}