/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Menlo, Monaco, 'Courier New', monospace;
  font-size: 16px;
}

main {
  max-width: 500px;
  margin: auto;
  padding: 0 1rem;
}

ul {
  list-style: none;
  padding: 0;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0;
  padding: 0.5rem 0;
}

summary {
  cursor: pointer;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

#listen {
  display: block;
  font-size: 1.25rem;
  width: max-content;
  margin: auto;
}

.movie {
  aspect-ratio: 16 / 9;
  width: 100%;
  min-width: 320px;
  height: auto;
}

.dialog__container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.button {
  font-family: Menlo, Monaco, 'Courier New', monospace;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 50%;
  padding: 0.5rem 1rem;
  color: #000;
  cursor: pointer;
  transition: all 0.2s ease-out;
}

.button:hover {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
}

.button:active {
  transform: translateY(2px);
  box-shadow: none;
}

.button--close {
  width: max-content;
  margin-left: auto;
}

.members {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media(min-width: 768px) {
  .movie {
    width: 480px;
  }
}
