header {
  background: url("https://i.imgur.com/xXE6Td1.jpeg");
  box-shadow: inset 0px 0px 90px 90px rgba(0, 0, 0, 0.7);v
  width: 100%;
  min-height: 200px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 20%;
  grid-area: header;
  border-radius: var(--border-radius-xs);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.header-anime-details {
  margin-bottom: var(--margin-l);
  text-align: center;
}
.header-anime-details--logo {
  -webkit-filter: drop-shadow(0px 5px 15px var(--theme-color-500));
  filter: drop-shadow(0px 5px 15px var(--theme-color-500));
}
.header-anime-details--name {
  font-family: var(--font-titles);
  text-shadow: 2px 2px 5px black;
  font-size: var(--font-size-l);
  color: var(--white);
}

.header-anime-details--meta {
  padding: var(--padding-xs);
  font-size: var(--font-size-s);
}

.header-anime-details--meta span {
  padding: var(--padding-xxs) var(--padding-xs);
  background-color: var(--theme-color-600);
  color: white;
  text-shadow: 2px 2px 5px black;
}

.header-anime-details {
  display: flex;
  flex-direction: column;
  max-width: 32rem;
  margin-top: 5rem;
  margin-left: 3rem;
  padding: var(--padding-s);
}

.header-anime-details--description {
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  padding: var(--padding-s);
  margin: var(--margin-xs) 0;
  border-radius: 5px;
  /* width: 80%; */
  margin: auto;
}

.header-anime-details--description p {
  text-shadow: 2px 2px 5px black;
  color: white;
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

.header-right-side{
    display: flex;
    flex-direction: column;
    margin-top: 5rem;
    margin-right: 3rem;
    padding: var(--padding-s);
    min-width: 40rem;
    max-width: 40rem;
    opacity: 0.9;
}

.header-user--mkzei {
  color: white;
  display: flex;
}
