@charset "UTF-8";
body {
  overflow: hidden;
  background-color: black;
}

a {
  text-decoration: none;
  color: royalblue;
  transition: opacity 0.1s ease-out;
  display: flex;
  flex-direction: row;
  width: calc(100% - 6rem);
}

.bio {
  color: white;
  padding: 1rem;
  line-height: 25px;
  text-align: start;
}
.heading {
  color: white;
}
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 20vw 20vw 20vw 20vw 20vw;
  grid-auto-rows: 20vw;
}
ul li {
  position: relative;
  transition: transform 0.1s ease-out;
}

ul img {
  height: 100%;
}

ul li:hover {
  transform: scale(0.95);
}

ul li a {
  display: flex;
  flex-direction: row;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.app-title {
  width: fit-content;
  color: white;
  flex: 1;
}
.app-desc {
  color: white;
  margin: 0;
  text-align: center;
}
ul li:hover .app-desc {
  display: inline;
  visibility: visible;
  margin: 1rem;
}

.hero {
  width: 100%;
  overflow: hidden;
  transition: height 1s ease-out;
}
.hero.small {
  height: 40%;
}
.hero .title {
  position: relative;
  color: white;
  text-align: start;
  padding: 15px;
  font-weight: 100;
  font-size: 48px;
}

.apps {
  margin-top: 2rem;
}


.wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.backframe {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
body::-webkit-scrollbar, iframe::-webkit-scrollbar {
  display: none;
}

main {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(black, .5);
  z-index: 10;
  backdrop-filter: blur(10px);
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: start;
}

main a {
  background: #333;
  padding: 16px;
}

main a:nth-child(2n) {
  background: #222;
}

main a:hover {
  background: #EEE;
}

main a:hover .app-title, main a:hover .app-desc {
  color: black;
}

h3 a {
  font-variant: small-caps;
}