* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial;
}
html{
  height: 100%;
}
body{
  color: #fff;
  background: #000;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.title {
  display: flex;
  width: 250px;
}
.logo {
  height: 50px;
  padding-right: 20px;
  margin-bottom: -20px;
}
.title p {
  color: #fff;
  margin: 0 35px;
  font-size: 1.5rem;
  font-weight: bold;
  font-variant: small-caps;
}
.title a{
  text-decoration: none;
}
header {
  top: 5px;
  margin-top: 5px;
}
.episode{
  display: flex;
  gap: 30px;
  padding-left: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.3rem;
}
.episode .season-lable{
  margin-right: 7px;
  font-weight: bold; 
}
.episode .episode-lable{
  font-weight: bold;
}
.episode a {
  color: #000;
  text-decoration: none;
}
p5{
  margin-top: 10px;
}
iframe{
  margin: 0 auto;
}
.footer {
  display: flex;
  background-color: #000;
  position: relative;
  height: 50px;
  margin-top: auto;
}
.footer p {
  color: gray;
  margin: 10px 22px;
  font-size: 0.9rem;
}
