:root {
    --color-bg: #1a1825;
    --color-fg: #E6E6E6;
    --color-link: #B7B8B8;
    --color-link-visited: #B7B8B8;
    --color-link-hover: #c4a7e7 ;
}

html, body {
  background: var(--color-bg);
  color: var(--color-fg);
  font-family: 'Ubuntu Mono', monospace;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  zoom: 120%;
  -moz-transform: scale(1.2);
}

.container {
  display: grid;
  grid-template-columns: 1fr 360px 650px 1fr;
  grid-template-areas:
    ". left right .";
  column-gap: 100px;
  justify-items: center;
  align-items: center;
  min-height: 100%;
}

.left-container {
  grid-area: left;
  aspect-ratio: 1/1;
}

.right-container {
  grid-area: right;
  height: 80%;
  width: 100%;
}

.gif img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 4px;
  box-shadow: rgb(0, 0, 0) 0px 20px 30px -10px;
}

.category {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-left: 3px;
  background: #26233a;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 4px;
  margin: 5px;
}

.bookmarks {
  display: flex;
  justify-content: center;
  padding-top:50px;
}

.links {
  display: flex;
  flex-direction: column;
  align-items: left;
  padding-top: 5px;
  padding-right:5px;
  padding-bottom: 20px;
}

.title {
  font-size: 20px;
}

li {
  font-size: 16px;
  list-style-type: none;
  padding: 5px
}

a:link {
  text-decoration: none;
  color: var(--color-link);
}

a:visited {
  color: var(--color-link-visited);
}

a:hover {
  color: var(--color-link-hover);
}

.blinking {
  animation: opacity 1s ease-in-out infinite;
  opacity: 1;
}

input {
  background-color: unset;
  font: 30px 'Ubuntu Mono', monospace;
  color: #B7B8B8;
  border-top-style: hidden;
  border-left-style: hidden;
  border-right-style: hidden;
  border-bottom-style: hidden;
  text-align: left;
  outline: 0;
}
.head {
  background-color: unset;
  font: 40px 'Ubuntu Mono', monospace;
  color: #B7B8B8;
  text-align: center;
  width: 100%;
  padding-top: 100px;
  padding-left:10px;
}

@keyframes opacity {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
