body {
  display: flex;
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-family: "REM", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: rgb(202, 151, 122);
}

a {
  color: rgb(202, 151, 122);
}

.double-border {
  border: 6px double rgb(65, 41, 27);
  border-radius: 16px;
}

video {
  width: 800px;
  /* width: 100%; */
  height: auto;
  border-radius: 12px;
}

h1 {
  font-size: 2.3rem;
  font-weight: bold;
}

.main-screen,
.controls {
  display: flex;
  /* gap: 10px; */
  justify-content: center;
  align-items: center;
  /* margin-bottom: 10px; */
}

.main-screen {
  /* background-color: antiquewhite; */
  padding: 10px;
  width: 100%;
}

.controls {
  gap: 10px;
  padding: 10px;
}

.playlist {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 10px;

  padding: 10px;
  border-bottom: 6px double rgb(65, 41, 27);
}

#progress-bar-container {
  width: 100%;
  height: 10px;
  background-color: gray;
}
#progress-bar {
  width: 0%;
  display: block;
  background-color: #ff91b5;
  height: 100%;
  transition: width 0.2s ease;
}

button {
  cursor: pointer;
  padding: 10px;
  font-size: 1.2rem;
  color: black;
  /* color: rgb(202, 151, 122); */
  border-radius: 12px;
  background-color: rgba(250, 235, 215, 0.588);
}

button:hover {
  scale: 0.9;
  background-color: rgba(250, 235, 215, 0.25);
}

#likes {
  font-size: 2.2rem;
  color: rgb(168, 55, 55);
}

footer {
  bottom: 0;
}
