* {
  -webkit-overflow-scrolling: touch !important;
  box-sizing: border-box;
  -webkit-appearance: none !important;
  outline: none;
  border: none;
  resize: none;
}

body {
  font-family: system-ui, ui-sans-serif;
  font-stretch: semi-expanded;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  /* height: 100vh; */
}

h1 {
  font-size: 3rem;
  font-stretch: expanded;
  line-height: 1;
}

main {
  max-width: 100%;
  text-align: center;
  background-color: white;
}

section.articles {
  display: flex;
  padding-bottom: 2rem;
  gap: 0.5rem;
}

article {
  cursor: pointer;
  padding: 1rem;
  filter: grayscale();
  color: blue;
}

@media (min-width: 900px) {
  article {
    padding: 3rem;
  }
}

article img {
  width: 100%;
}

article:hover,
article.active {
  filter: none;
  border-radius: 5rem;
  background-color: whitesmoke;
  /* border: 1px solid blue; */
  /* box-shadow: 0.25rem 0.3rem 0.7rem lightgray; */
}

.small {
  opacity: 0.3;
  font-size: 0.9rem;
}

button, input, select {
  font-size: 1.2rem;
  padding: 1rem;
  margin: 0 1rem 1rem 0;
  border-radius: 3rem;
  background-color: rgba(0, 0, 0, 0.03);
  /* backdrop-filter: blur(10rem); */
  font-stretch: semi-expanded;
}
button, select {
  text-transform: uppercase;
  cursor: pointer;
}
button[primary] {
  /* margin-top: 1rem; */
  background-color: black;
  color: white;
}

.hidden {
  display: none;
}


player {
  text-align: center;
}

player div {
  margin: 8rem 0;
}

audio {
  transform: scale(1.2);
}

.script {
  word-wrap: break-word;
  font-size: 1rem;
  opacity: 0.3;
  /* opacity: 0; */
  /* color: gray; */
  /* font-family: ui-serif, serif; */
}

.gray {
  opacity: 0.3;
}

.tips {
  text-align: left; 
  opacity: 0.3; 
  font-size: 1rem; 
  margin-top: 3rem;
}

