* {
    padding: 0;
    margin: 0;
}

@font-face { font-family: AdwaitaMono; src: url('/fonts/AdwaitaMono-Regular.ttf'); } 
@font-face { font-family: AdwaitaMono; font-weight: bold; src: url('/fonts/AdwaitaMono-Bold.ttf');}
@font-face { font-family: AdwaitaMono; font-weight: bold; font-style: italic; src: url('/fonts/AdwaitaMono-BoldItalic.ttf');}
@font-face { font-family: AdwaitaMono; font-style: italic; src: url('/fonts/AdwaitaMono-Italic.ttf');}

::selection {
    background-color: #0004;
}

::-webkit-scrollbar {
    width: 4px;
    /*width: 5px;*/
}

::-webkit-scrollbar-track {
    background: #1f1f1f;
}

::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 4px;
}

::-webkit-scrollbar-button {
    display: none;
}

body {
  height: 100vh;
  height: 100dvh;
  background-color: #1f1f1f;
  font-family: AdwaitaMono, serif;
  --text: #e0b7e0;
  --text-darker: #b989b9;
}

.home-outer {
  width: 100%;
  display: flex;
  min-height: 100vh;
  min-height: 100dvh;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.home-outer > span {
  color: var(--text);
  margin-top: 32px;
  font-size: 2.5rem;
  letter-spacing: 16px;
  opacity: .60;
  text-shadow: 0 0 4px white;
  user-select: none;
}

.home-outer > span > a {
  color: var(--text);
  margin-top: 32px;
  font-size: 2.5rem;
  letter-spacing: 16px;
  text-shadow: 0 0 4px white;
  text-decoration: none;
}

.home-outer > span > a:nth-child(1) {
  padding-left: 16px;
}

.home-inner {
  flex: 0;
  display: flex;
  align-self: stretch;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}

.home-inner .item {
  width: 550px;
  height: 300px;
  background-color: #171717;
  border-radius: 32px;
  margin: 16px;
  padding: 16px;
  color: var(--text);
  text-decoration: none;
  position: relative;
  transition: .5s ease-out;
}

.home-inner .item:hover {
  transform: scale(1.15);
  transition: .5s ease-out;
}

.home-inner .item:first-child {
  margin-top: 32px;
}

.home-inner .item:last-child {
  margin-bottom: 32px;
}

.home-inner .item .title {
  display: block;
  font-size: 3rem;
  text-align: center;
  letter-spacing: 12px;
  padding-left: 12px;
  width: 100%;
  margin-top: 110px;
  text-shadow: 0 0 4px white;
  user-select: none;
}

.home-inner .item .title .small {
  font-size: 1.5rem;
  letter-spacing: 6px;
}

.home-inner .item img {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  opacity: .3;
  border-radius: 32px;
  user-select: none;
  -webkit-user-drag: none;
}

#extraLink {
  color: #ea82ea;
  text-decoration: underline dashed 1px #ea82ea;
  opacity: .15;
  padding-bottom: 16px;
  transition: .5s ease-in-out;
}

#extraLink:hover {
  opacity: .75;
  transform: rotate(360deg) skew(0deg,10deg);
  transition: .25s ease-in-out;
}



/* responsive bs */

@media (max-width: 700px) {
  .home-inner {
    transform: scale(.75);
    position: relative;
    top: -64px;
  }

  .home-inner .item:first-child {
    margin-top: 0;
  }

  .home-inner .item:hover {
    transform: scale(1);
  }

  .home-outer > span,
  .home-outer > span > a {
    font-size: 1.5rem;
  }

  
}

@media (max-width: 580px) {
  .home-inner {
    transform: scale(.60);
    position: relative;
    top: -128px;
  }

  .home-inner .item:first-child {
    margin-top: 0;
  }

  .home-inner .item:hover {
    transform: scale(1);
  }

  .home-outer > span,
  .home-outer > span > a {
    font-size: .8rem;
  }
  
}

@media (max-width: 370px) {
  .home-inner {
    transform: scale(.50);
    position: relative;
    top: -128px;
  }

  .home-inner .item:first-child {
    margin-top: 0;
  }

  .home-inner .item:hover {
    transform: scale(1);
  }

  .home-outer > span,
  .home-outer > span > a {
    font-size: .7rem;
  }
}