:root {
  --ms-box-size: auto;
  --cbox-hue-rot: 0deg;
  --ms-box-color: beige;
}

html,
body {
  overscroll-behavior: none;
  margin: 0;
  height: 100%;
  overflow: hidden;
}

#red {
  color: #ee5396;
}

body {
  font-family: "Source Code Pro", monospace;
  background-color: #ff7eb6;
  background: linear-gradient(45deg, #ff7eb6 0%, #ee5396 35%, #be95ff 100%);
  margin: 0;
  overflow: hidden;
}

.oflex {
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: row;
  position: relative;
}

.cont {
  padding-right: 15px;
  padding-left: 28px;
  margin-right: auto;
  margin-left: auto;
  transition: 2s;
}

@media (max-width: 700px) {
  .oflex {
    transform: translateY(-10%);
  }
  .peeb,
  .sc-out {
    transform: translateY(10%);
  }
  .cont {
    padding-left: 15px;
  }
}
.inner {
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  padding: 20px;
  margin-right: -15px;
  margin-left: -15px;
}

.items {
  display: flex;
  flex-direction: column;
}

h1,
div {
  color: #dde1e6;
}

.l {
  color: #f2f4f8;
  margin-top: 5px;
}

.info {
  display: grid;
  grid-column-end: 2;
  grid-template-columns: auto auto;
}

b {
  color: #393939;
}

.ico {
  height: 16px;
  transform: translateY(4px);
  padding-right: 5px;
}

a:link {
  color: #08bdba;
}

a:visited {
  color: #78a9ff;
}

a:hover {
  color: #ee5396;
}

a:active {
  color: #f2f4f8;
}

.peeb {
  background-color: #ee5396;
  height: 100%;
  width: 2px;
  flex-shrink: 0;
}

.sc-out {
  display: flex;
  height: 100%;
  margin-top: auto;
  margin-bottom: auto;
}

.sc-in {
  width: 17px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  white-space: nowrap;
}
.sc-in > div {
  color: #ee5396;
  display: flex;
  writing-mode: vertical-lr;
  animation: sext 10s infinite linear;
}

@keyframes sext {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(-100%);
  }
}
.link {
  background-color: rgba(51, 252, 255, 0.09);
  transform: translateY(-2px);
  display: inline-block;
  height: 22px;
  padding-left: 2px;
  padding-right: 2px;
  border-radius: 5px;
}

.circle {
  position: absolute;
  display: block;
  width: 100px;
  aspect-ratio: 1/1;
  background: black;
  border-radius: 100%;
}

.filter {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.filter-dodge {
  background: #808080;
  mix-blend-mode: color-dodge;
}

.filter-burn {
  background: black;
  mix-blend-mode: color-burn;
}

.blur {
  filter: blur(40px);
}

.c {
  position: absolute;
  background: white;
  overflow: hidden;
  mix-blend-mode: screen;
  height: 100%;
  width: 100%;
}

.huh {
  position: absolute;
  background: darkblue;
  height: 100%;
  width: 100%;
  mix-blend-mode: luminosity;
}

.fade_out_up {
  animation: fade_out_up 0.56s;
  animation-timing-function: ease-in-out;
}

@keyframes fade_out_up {
  from {
    opacity: 100%;
    transform: translate(0, 0%);
  }
  to {
    opacity: 0%;
    display: none;
    transform: translate(0, -100%);
  }
}
.fade_in_up {
  animation: fade_in_up 0.56s;
  animation-timing-function: ease-in-out;
}

@keyframes fade_in_up {
  from {
    opacity: 0%;
    transform: translate(0, 100%);
  }
  to {
    opacity: 100%;
    transform: translate(0, 0%);
  }
}
.fade_out_down {
  animation: fade_out_down 0.56s;
  animation-timing-function: ease-in-out;
}

@keyframes fade_out_down {
  from {
    opacity: 100%;
    transform: translate(0, 0%);
  }
  to {
    display: none;
    opacity: 0%;
    transform: translate(0, 100%);
  }
}
.fade_in_down {
  animation: fade_in_down 0.56s;
  animation-timing-function: ease-in-out;
}

@keyframes fade_in_down {
  from {
    opacity: 0%;
    transform: translate(0, -100%);
  }
  to {
    opacity: 100%;
    transform: translate(0, 0%);
  }
}
.vflex {
  display: flex;
  flex-direction: column;
}

.hflex {
  display: flex;
  flex-direction: row;
}

.cbox {
  filter: hue-rotate(var(--cbox-hue-rot));
  width: auto;
  background-color: rgba(120, 169, 255, 0.5);
  margin: 6px;
  padding: 5px;
  border-radius: 4px;
  border: solid rgba(120, 169, 255, 0.9);
  border-width: 2px;
}

.hide {
  display: none;
}

.phide {
  max-width: 0;
  max-height: 0;
  opacity: 0;
}

.minesweeper-square {
  width: var(--ms-box-size);
  aspect-ratio: 1/1;
  background: var(--ms-box-color);
  overflow: hidden;
  user-select: none;
}

#minesweeper-board {
  /*display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;*/
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

#minesweeper-board span {
  flex-basis: 100%;
  height: 0;
  width: 0;
}

.ms-img {
  position: static;
  height: 100%;
  width: 100%;
}

.resize-animation {
  overflow: hidden;
  transition: max-width 2s, max-height 2s;
}

.show {
  display: block;
}

.left-hand {
  position: absolute;
  top: 50%;
  margin-left: 5px;
  transform: translateY(-50%);
}

.dot {
  background-color: rgba(30, 30, 30, 0.3);
  backdrop-filter: blur(5px);
  width: 17px;
  height: 17px;
  border-radius: 100%;
  margin-bottom: 5px;
  box-shadow: 0 0 12px rgba(30, 30, 30, 0.3);
  transition: width 1s, height 1s;
}

.dot:hover {
  width: 20px;
  height: 20px;
}

.dot-lit {
  background-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
}

@media (max-width: 700px) {
  .left-hand {
    display: none;
  }
  h1 {
    font-size: 1.7em;
  }
}
#spotify {
  position: absolute;
  right: 2em;
  height: 90px;
  background: rgba(0, 0, 0, 0.5);
  bottom: 20px;
  border-radius: 5px;
  backdrop-filter: blur(50px);
  display: flex;
  max-width: min(350px, 75%);
  transition: width 1s ease-in-out;
  border-radius: 5px;
  overflow: hidden;
}

#spotify-img {
  height: 100%;
  position: relative;
  /*border-top-left-radius: 5px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 5px;*/
}

#spotify-cont {
  width: 0px;
  overflow: hidden;
  margin: auto;
}

#spotify:hover #spotify-cont {
  width: 100%;
  padding: 5px;
}

.tag {
  display: inline-block;
  padding: 3px;
  border-radius: 3px;
  border-width: 2px;
  margin-top: 2px;
  margin-bottom: 2px;
  font-size: 11pt;
}

.col00 {
  background: rgba(22, 22, 22, 0.4);
  border: solid rgba(22, 22, 22, 0.8);
}

.col01 {
  background: rgba(38, 38, 38, 0.4);
  border: solid rgba(38, 38, 38, 0.8);
}

.col02 {
  background: rgba(57, 57, 57, 0.4);
  border: solid rgba(57, 57, 57, 0.8);
}

.col03 {
  background: rgba(82, 82, 82, 0.4);
  border: solid rgba(82, 82, 82, 0.8);
}

.col04 {
  background: rgba(221, 225, 230, 0.4);
  border: solid rgba(221, 225, 230, 0.8);
}

.col05 {
  background: rgba(242, 244, 248, 0.4);
  border: solid rgba(242, 244, 248, 0.8);
}

.col06 {
  background: rgba(255, 255, 255, 0.4);
  border: solid rgba(255, 255, 255, 0.8);
}

.col07 {
  background: rgba(8, 189, 186, 0.4);
  border: solid rgba(8, 189, 186, 0.8);
}

.col08 {
  background: rgba(61, 219, 217, 0.4);
  border: solid rgba(61, 219, 217, 0.8);
}

.col09 {
  background: rgba(120, 169, 255, 0.4);
  border: solid rgba(120, 169, 255, 0.8);
}

.col0A {
  background: rgba(238, 83, 150, 0.4);
  border: solid rgba(238, 83, 150, 0.8);
}

.col0B {
  background: rgba(51, 177, 255, 0.4);
  border: solid rgba(51, 177, 255, 0.8);
}

.col0C {
  background: rgba(255, 126, 182, 0.4);
  border: solid rgba(255, 126, 182, 0.8);
}

.col0D {
  background: rgba(66, 190, 101, 0.4);
  border: solid rgba(66, 190, 101, 0.8);
}

.col0E {
  background: rgba(190, 149, 255, 0.4);
  border: solid rgba(190, 149, 255, 0.8);
}

.col0F {
  background: rgba(130, 207, 255, 0.4);
  border: solid rgba(130, 207, 255, 0.8);
}

.project-icon-link {
  display: inline-block;
  height: 1lh;
}

.project-icon {
  height: 100%;
  transform: translateY(4px);
  padding-left: 6px;
}

.game-button {
  padding: 0;
  border: none;
  background: rgba(0, 0, 0, 0);
}

.game-thumbnail {
  border-radius: 4px;
}

#image-cache-cont {
  opacity: 0;
}

#ms-explotion {
  position: absolute;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/*# sourceMappingURL=style.css.map */
