@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital@0;1&family=Open+Sans:wght@300,400,600,800&display=swap');

html {
  margin: 0;
  padding: 0;

  width: 100vw;

  overflow-x: hidden;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: normal !important;
  backdrop-filter: blur(5px);

  margin: 0;
  padding: 0;

  width: 100%;

  background-color: #333333;
}

div {
  color: #fff;
}

a {
  color: #fff;
  text-decoration: none;
}

h1 {
  font-weight: 800;
  margin: 12px;
}

h2 {
  margin-top: 0;
}

sup {
  line-height: 0.4rem;
}

#main_image {
  margin-top: 1rem;
  height: 5rem;
}

#home {
  position: absolute;
  top: 30px;
  left: 30px;

  transition: all 0.2s ease-in-out;
}

#home:hover {
  transform: scale(1.1);
  cursor: pointer;
}

#home img {
  height: 30px;
}

#title {
  color: #fff;
  font-size: 3rem;
}

#inner {
  display: block;
  text-align: center;

  height: 100%;
  width: 100%;
}

#header {
  display: block;
  color: #fff;

  margin-top: 42px;

  text-align: center;

  font-weight: 600;

  font-size: 1.5rem;
  font-style: italic;
}

#link_buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

  margin: 16px;
}

#link_buttons a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

  margin: 10px;
  padding: 10px;

  color: #fff !important;

  border-radius: 10px;
  background-color: #252525;
	box-shadow: 0px 5px 0px 0px #1a1a1a;

  transition: all 0.1s ease-in-out;
}

#link_buttons a:hover {
  transform: scale(1.1);
  cursor: pointer;
}

#link_buttons a img {
  height: 20px;
  margin-left: 10px;
}

#cards {
  text-align: left;

  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-evenly;

  flex-wrap: wrap;

  width: 100%;
  height: 50%;
}

.info_card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-around;

  width: 25%;

  border-radius: 10px;
  background-color: #252525;

  padding: 20px;
  margin-top: 20px;
}

#inner a {
  color: #67c7ff;
}

#screenshots {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-evenly;

  flex-wrap: wrap;

  width: 100%;
  height: 50%;
}

.screenshot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 30%;
  height: 80%;

  padding: 20px;
  margin-top: 20px;
}

.screenshot a {
  color: #67c7ff;
}

.screenshot span {
  margin-top: 6px;
}

.screenshot img {
  border-radius: 10px;
  filter: drop-shadow(0px 0px 10px #222);

  height: 16rem;

  transition: all 0.1s ease-in-out;
}

.screenshot img:hover {
  transform: scale(1.3);
  cursor: pointer;
  z-index: 999;
}