body {
  background-color: #000000;
}

#window {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 80vh;
  width: 106vh;
  margin: 3vh auto 0 auto;
  padding: 8px;
  border-radius: 8px;
  border-collapse: collapse;
}

#window::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 3px solid white;
  border-radius: 8px;
  z-index: -1;
  animation: chromatic 1s ease-in alternate infinite;
}

@keyframes chromatic {

  0% {
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    filter:
      drop-shadow(-2px -2px 0 rgba(255, 0, 0, 0.7)) drop-shadow(2px 2px 0 rgba(0, 0, 255, 0.7)) blur(2px);
  }

  100% {
    top: -4px;
    left: -5px;
    right: -4px;
    bottom: -7px;
    filter:
      drop-shadow(-4px -3px 0 rgba(255, 0, 0, 0.7)) drop-shadow(4px 3px 0 rgba(0, 0, 255, 0.7)) blur(2px);
  }
}

.navbar {
  height: 80px;
  gap: 20px;
  display: flex;
  justify-content: left;
  align-items: center;
  padding: 0;
  padding-bottom: 8px;
}

.navbar::before {
  content: '';
  position: absolute;
  height: 100px;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  z-index: -1;
  border-bottom: white solid 3px;
  border-radius: 12px;
  animation: chromatic 1s ease-in alternate infinite;
}

#logo {
  display: block;
  height: 100%;
  max-height: 100%;
  width: auto;
  animation: logoBreathe 2s ease-in-out alternate infinite;
}

@keyframes logoBreathe {
  0% {
    filter: saturate(200%) invert(0.5) sepia(1) hue-rotate(0deg);
  }

  100% {
    filter: saturate(200%) invert(0.5) sepia(1) hue-rotate(360deg);
  }
}

.navbar-items {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.navbar li {
  float: left;
  padding: 7px 8px;
}

.navbar li a {
  display: block;
  color: white;
  text-align: center;
  font-size: 28px;
  padding: 7px 8px;
  text-decoration: none;
  background-color: black;
  border: #66cc66 1px solid;
}

.navbar a:hover {
  background-color: #004000;
  animation: navbarLinkLightUp 1s forwards, linkHueShift 1s ease-in-out alternate infinite;
}

@keyframes navbarLinkLightUp {
  0% {
    background-color: #004000;
  }

  100% {
    background-color: #006000;
  }
}

@keyframes linkHueShift {
  0% {
    filter: hue-rotate(0deg);
  }

  100% {
    filter: hue-rotate(-50deg);
  }
}

.window-icons {
  margin-left: auto;
  margin-right: 4px;
  display: flex;
  align-items: center;
  align-self: end;
  animation: lesschromatic-lessblurry 1s ease-in-out alternate infinite;
}

@keyframes lesschromatic-lessblurry {

  0% {
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    filter:
      drop-shadow(-1px -1px 0 rgba(255, 0, 0, 0.7)) drop-shadow(1px 1px 0 rgba(0, 0, 255, 0.7)) blur(1px);
  }

  100% {
    top: -4px;
    left: -5px;
    right: -4px;
    bottom: -7px;
    filter:
      drop-shadow(-3px -2px 0 rgba(255, 0, 0, 0.7)) drop-shadow(3px 2px 0 rgba(0, 0, 255, 0.7)) blur(1.5px);
  }
}

.window-icons img {
  display: block;
  height: 75px;
  margin: 2px 2px 2px 6px;
  width: auto;
  filter: invert(0.8) sepia(1) saturate(200%) brightness(200%) hue-rotate(70deg);
  cursor: pointer;
}

.window-icons img:hover {
  filter: invert(0.8) sepia(1) saturate(200%) hue-rotate(70deg);
}

#cross {
  filter: invert(0.8) sepia(1) saturate(300%) brightness(200%) hue-rotate(-50deg);
}

#cross:hover {
  filter: invert(0.8) sepia(1) saturate(300%) hue-rotate(-50deg);
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.top {
  flex: 5;
}

.socials {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  border-top: white solid 3px;
  margin-left: 20px;
  margin-right: 20px;
  flex: 1;
  animation: chromatic-lessblurry 1s ease-in-out alternate infinite;
  overflow: hidden;
  gap: 20px;
}

@keyframes chromatic-lessblurry {

  0% {
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    filter:
      drop-shadow(-2px -2px 0 rgba(255, 0, 0, 0.7)) drop-shadow(2px 2px 0 rgba(0, 0, 255, 0.7)) blur(1px);
  }

  100% {
    top: -4px;
    left: -5px;
    right: -4px;
    bottom: -7px;
    filter:
      drop-shadow(-4px -3px 0 rgba(255, 0, 0, 0.7)) drop-shadow(4px 3px 0 rgba(0, 0, 255, 0.7)) blur(1px);
  }
}

.socials a {
  display: flex;
  height: 100%;
  width: max-content;
  transition: transform 0.2s ease-out, height 0.2s ease-out;
  transform: translate(0px, 5px);
  height: 70%;
}

.socials a:hover {
  transform: translate(0px, 5px);
  height: 90%;
}

.socials img {
  cursor: pointer;
  max-height: 100%;
  object-fit: contain;
}

#etc {
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

#etc li a {
  color: white;
}

h2 {
  color: white;
}