* {
  margin: 0;
  padding: 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;
}

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

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

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

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

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

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

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

.home-outer > a.home {
  color: var(--text-darker);
  margin-top: 16px;
  font-size: 1rem;
  opacity: .60;
  user-select: none;
  text-decoration: underline dashed 1px;
}

.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 img {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  opacity: .3;
  border-radius: 32px;
  user-select: none;
  -webkit-user-drag: none;
}



/* responsive bs */

@media (max-width: 690px) {
  .home-inner {
    transform: scale(.75);
    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: 2rem;
  }
}

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

  .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: 370px) {
  .home-inner {
    transform: scale(.50);
    position: relative;
    top: -256px;
  }

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

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

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