@import url("https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400;700&display=swap");

:root {
  --color-bg: #22223b;
  --color-fg: #f2e9e4;
  --color-link: #c9ada7;
  --color-link-visited: #9a8c98;
  --color-link-hover: #4a4e69;
}

html,
body {
  background-color: var(--color-bg);
  color: var(--color-fg);
  font-family: "Source Code Pro", monospace;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

.wrapper {
  display: grid;
  grid-template-columns: 1fr 460px 600px 1fr;
  grid-template-areas: ". left right .";
  column-gap: 80px;
  justify-items: center;
  align-items: center;
  min-height: 100%;
}

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

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

.img-gif-container img {
  width: 100%;
  height: 100%;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 28px;
  padding-top: 60px;
}

.links-row {
  display: flex;
  justify-content: center;
}

.col {
  display: flex;
  flex-direction: column;
  width: 180px;
}

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

.col-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 {
  text-decoration: none;
  color: var(--color-link-visited);
}

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

.blinking_cursor {
  animation: opacity 1.5s ease-in-out infinite;
}

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