body {
    background-image: url("images/black.png");
    background-repeat: repeat;
    user-select: none;
    font-family: "Chivo", sans-serif;
}

/* fonts */

.vt323-regular {
  font-family: "VT323", monospace;
  font-weight: 400;
  font-style: normal;
}

.chivo {
  font-family: "Chivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.ruslan-display-regular {
  font-family: "Ruslan Display", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.main {
    position: absolute;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 5px;
    width: 480px;
    height: 415px;
    background-image: url("images/batground.jpg");
    top: 53%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow-y: scroll;
    overflow-x: hidden;
    border: 5px double #d9e3c8;
    border-radius: 2px;
    outline: 2px dotted #d9e3c8;;
    padding: 10px 5px 10px 25px;
}

#tape {
    z-index: 10;
    width: 145px;
    position: absolute;
    left: 70.5%;
    top: 17%;
}

.key {
    background-image: url("images/flowerback.jpg");
    width: 70px;
    height: auto;
    border-radius: 2px;
    padding: 10px 20px 20px 20px;
    outline: 1px dashed #d9e3c8;
    text-align: center;
    font-size: 14px;
    position: absolute;
    left: 72%;
    top: 20%;
    z-index: 1;
}

h1 {
    color: #d9e3c8;
    font-family: "Ruslan Display", sans-serif;
    text-align: center;
}

.covers {
    position: relative;
    width: 120px;
    height: auto;
    padding: 5px;
    border: solid;
    border-radius: 5px;
}

#ghostgif {
    position: absolute;
    top: 43%;
    left: 3%;
}

.link {
    position: absolute;
    left: 91%;
    top: 90%;
    color: #d9e3c8;
    font-family: "Ruslan Display", sans-serif;
    text-decoration: none;
}

.link:hover {
    font-style: italic;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-image: url("images/static.jpg");
  opacity: 0;
  transition: .5s ease;
  border-radius: 5px;
}

.container {
    position: relative;
    width: 135px;
    height: auto;
    border-radius: 50%;
}

.container:hover .overlay {
  opacity: 1;
  cursor: pointer;
}

.overlaytext {
  color: #101010;
  font-size: 18px;
  font-family: "Ruslan Display", sans-serif;;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  width: 133px;
}

/* scrollbar */

::-webkit-scrollbar {
  background-color: rgb(265, 254, 255, 0.7);
  width: 10px;
}

::-webkit-scrollbar-button {
  color: rgb(16, 16, 16, 0.7);
}

::-webkit-scrollbar-thumb {
  background:  rgb(16, 16, 16, 0.7);
  opacity: 0.5;
  border-radius: 5px;
}



