@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

* {
  margin: 0;
  padding: 0;
}

html {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  background: linear-gradient(45deg, white, white);
  scroll-behavior: smooth;
}

li {
  list-style: none;
}

.navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  align-content: center;
  justify-content: center;
  text-align: center;
  background-color: white;
  backdrop-filter: blur(5px);
  translate: -25% -25%;
}

.naventry {
  text-decoration: none;
  color: black;
  font-size: 4rem;
  font-weight: 600;
}

.naventry:hover {
  color: white;
  background-color: black;
  border-radius: 0.25rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.navbutton-container {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
}

.navbutton {
  text-align: center;
  align-self: center;
  justify-self: center;
  justify-content: center;
  margin: 0.5rem;
  padding: 0.5rem;
  line-height: 1rem;
  border-radius: 0.75rem;
  width: 2rem;
  display: grid;
  background-color: black;
}

i {
  grid-row: 1;
  grid-column: 1;
  color: white;
}

.container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
  z-index: 0;
}

.hide {
  transform: scale(1.5);
  opacity: 0;
  transition: 350ms ease-in-out;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  visibility: hidden;
}

.show {
  transform: scale(1);
  opacity: 1;
  transition: 350ms ease-in-out;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  visibility: visible;
}

.blur {
  filter: blur(5px);
  transition: 200ms ease-in-out;
}

.no-blur {
  filter: none;
  transition: 200ms ease-in-out;
}

.content-light {
  position: relative;
  background: linear-gradient(45deg, white, white);
  color: black;
  height: 100%;
}

.content-dark {
  position: relative;
  background: linear-gradient(45deg, black, black);
  color: white;
  height: 100%;
}

.content-container {
  display: grid;
  grid-auto-columns: minmax(0, 1fr);
  grid-auto-rows: minmax(0, 1fr);
  grid-auto-flow: dense;
  height: 100%;
  min-height: 0;
}

.content-container-left {
  grid-row: 1;
  grid-column: 1;
  text-align: left;
  padding: 20%;
  display: flex;
}

.canvas {
  width: 100%;
  height: 100%;
}

.black {
  background-color: black;
}

.white {
  background-color: white;
}

.content-container-right {
  grid-row: 1;
  grid-column: 2;
  text-align: right;
  display: flex;
}

@media (max-width: 768px) {
  .content-container-left {
    grid-row: 1;
    grid-column: 1;
  }
}

@media (max-width: 768px) {
  .content-container-right {
    grid-row: 2;
    grid-column: 1;
  }
}

@media (max-width: 768px) {
  .navbutton-container {
    top: revert;
    bottom: 0;
  }
}
