body {
  background: black;
  font-family: helvetica;
  font-size: 20px;
  background-attachment: fixed;
  background-size: cover;
}
.content {
  max-width: 940px;
  margin: auto;
  background: var(--main);
  padding: 20px;
  border-radius: 5px;
}
table {
  border-collapse: collapse;
  width: 100%;
  border-color: black;
  border-radius: 5px;
}
td {
  padding: 10px;
}
.cover {
  background-size: 100% 100%;
  height: 150px;
  max-width: 450px;
  display: flex;
  justify-content: center;
  place-items: center;
}
h1 {
  color: #d31d1d;
  z-index: 1;
  text-shadow: 0px 0px 5px black;
  -webkit-text-stroke: 1px black;
  font-size: 5vh;
}
img {
  max-width: 150px;
  clip-path: polygon(50% 100%, 90% 80%, 100% 35%, 75% 0, 25% 0, 0 35%, 10% 80%);
}
.info {
  text-align: center;
}
a {
  font-weight: bold;
  color: var(--links);
}
a:hover {
  font-weight: bold;
  color: white;
  text-decoration: none;
}
.episodes {
  color: white;
  background-color: var(--fourth);
  text-align: center;
  font-weight: bold;
}

td:first-child {
  text-align: center;
}

.name {
  padding-top: 3.5px;
  font-size: 0.8em;
  font-weight: bold;
  display: block;
  width:90%;
  position: absolute;
  z-index: 1;
  color: white;
  text-shadow: 0 0 2.5px #000, 0 0 2.5px #000,0 0 2.5px #000,0 0 2.5px #000,0 0 2.5px #000;
}
.icon {
  position: relative;
  text-align: center;
}      

@media screen and (max-width: 768px) {
  body {
    font-size: 15px;
  }
  img {
    max-width: 10vh;
  }
  .name {
    width: 80%;
  }
}