body {
  font-family: Arial, sans-serif;
  background: #1c1c1c;
  color: white;
  padding: 20px;
}

h1 {
  text-align: center;
}

.form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

input {
  width: 300px;
  padding: 10px;
}

button {
  padding: 10px 20px;
  cursor: pointer;
}

#favoritesList {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.favorite-item {
  margin-bottom: 10px;
  background: #333;
  padding: 10px;
  border-radius: 8px;
  width: 320px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

video {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  width: 600px;
  height: auto;
  background: black;
}
