<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.standard-icon {
  height: 150px;
  width: 150px;
  background-image: url("../img/blank_icon.png");
  background-repeat: no-repeat;
  background-size: contain;
  margin: 30px 50px 30px 50px;
  background-position: center;
}

.android-app {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.android-app:nth-child(even) {
  flex-direction: row-reverse;
}

.centered-div {
  margin: 0 auto;
}

.centered-div &gt; div {
  display: inline-block;
}

.android-app-frame {
  width: 49%;

  text-align: center;
}

.android-app-frame &gt; img {
  display: inline-block;
}


.android-app-column {
  width: 50%;
  min-width: 300px;
}

.project {
  margin-bottom: 15vw;
}

.icon {
  width: 2vh;
  height: 2vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 5px 5px 5px 5px;
  cursor: pointer;
  -webkit-transition: -webkit-transform 300ms;
  -ms-transition: -ms-transform 300ms;
  transition: transform 300ms;
}

.icon:hover {
  -ms-transform: scale(1.5,1.5);
  -webkit-transform: scale(1.5,1.5);
  transform: scale(1.5,1.5);
}

.center-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.linkable-title-container h1 {
  margin-bottom: 0px;
}

.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

#container {
  -ms-transition : -ms-filter 400ms;
  -webkit-transition : -webkit-filter 400ms;
  transition : filter 400ms;
  -ms-filter: blur(0px);
  -webkit-filter: blur(0px);
  filter: blur(0px);
}

#container.blurred {
  -ms-filter: blur(10px);
  -webkit-filter: blur(10px);
  filter: blur(10px);
}</pre></body></html>