.container {
  min-height: 90vh;
  width: 100%;
  margin-top: 50px;
}

.content-padding {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  margin: 1rem 0 3rem 0;
}

.content-padding-yt4 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  margin: 0rem 2rem 3rem 2rem;
  margin-top: 60px;
}

h1 {
  font-size: 2.2rem;
  font-weight: 500;
  color: black;
  margin-top: 1rem;
}

h5 {
  font-size: 1.2rem;
  font-weight: 500;
  color: black;
  width: 30rem;
  margin-bottom: 0.5rem;
}

.thumbnail-container {
  position: relative;
  display: inline-block;
}

.thumbnails {
  position: relative;
  aspect-ratio: 16/9;
  width: 30rem;
}

.play-icon {
  color: #f48c06;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.play-icon:hover {
  transform: translate(-50%, -50%) scale(1.2);
  color: #ff950b;
}

video,
iframe {
  aspect-ratio: 16/9;
  width: 50rem;
}

.content-padding-yt4 .buttons {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.content-padding-yt4 button {
  background: #f48c06;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  padding: 1rem 2.5rem;
  border: none;
}

.videoChapters {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.videoChapters h4 {
  font-size: 1.3rem;
}

.videoChapters .timestamps {
  color: blue;
  font-weight: 500;
}

@media (max-width: 600px) {
  .content-padding-yt4 {
    margin-top: 0;
  }

  .fullscr,
  iframe {
    width: 100vw;
  }

  .thumbnails,
  h5 {
    width: 40rem;
  }

  .videoChapters {
    padding-left: 1.5rem;
  }
}