:root {
  --header:#fff;
  --background:url('https://cyboarnetic.neocities.org/img/background.jpg');
  --box:#1c0c50;
  --accent1:#ff5afc;
  --accent2:#6d3dfc;
  --accent3:#20d5e1;
  --bodytext:#fff;
  --navtext:10px;
  --title: 15px bold;
  --u: #daac5c;
  --itallic:#9ea3fd;
  --mark:#7b3ffd;
  --marktext:#fff;
}

a:link, a:visited, a:active { 
color:var(--accent3);
text-decoration:none;
}
a:hover {
color:var(--accent2);
}
b {color:var(--accent3);font-weight:bold;}
i {font-style:italic;color:var(--itallic);}
u {color:var(--u);text-decoration:none;}
mark {background:var(--mark); color:var(--marktext);}
textarea {font:10px calibri;letter-spacing:1px;}
h1, h2, h3, h4, h5 {
font-family: "Silkscreen", sans-serif;
font-weight: 500;
font-style: normal;
color: var(--header);
}
hr {color:var(--accent3);}

body {
  background: transparent;
  width:100%;
  margin:0;
  color:var(--bodytext);
  font-size:15px;
  font-family: "Saira Semi Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.media {
  width: 750px;
  margin:auto;
  display:grid;
  grid-template-columns:auto auto auto auto auto;
  row-gap:10px;
}
.container {
  position: relative;
  width:130px;
  height:225px;
}
.poster {
  display:block;
  width:130px;
  height:180px;
  transition:.5s;
  height: auto;
}
.poster img {
  width:100%;
  border: 1px solid var(--accent1);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 196px;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  border-top-left-radius:5px;
  border-top-right-radius:5px;
  background: rgba(0,0,0,.7);

}
.container:hover .overlay {
  opacity: 1;
}
.text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
.stars {
  background: var(--accent1);
  border: 1px solid var(--accent1);
  width:130px;
  height:25px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  text-align:center;
}
.stars img {
  padding-top:2px;
  width:18px;
}
.box {
  background:var(--box);
  border: 1px solid var(--accent1);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding:7px;
  margin-bottom:10px;
  overflow:auto;
}
.title {
  background:var(--accent1);
  color:var(--title);
  font-size:17px;
  font-family: "Handjet", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  letter-spacing:1px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  padding:5px;
  
}
.title img {
  float: right;
  height:20px;
}
