* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  min-height: 100vh;
}

a {
  text-decoration: none;
}

#blurrer {
  min-height: 100vh;
  backdrop-filter: blur(5px) brightness(50%);
}

#wrapper {
  background: url('../images/landscape3.jpg');
  min-height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

#logo {
  height: auto;
  margin: 50px auto 0;
  max-height: 90px;
  max-width: calc(100% - 40px);
}

#pitch {
  width: 600px;
  margin: 0 auto;
  text-align: center;
  margin-top: 20px;
  max-width: calc(100% - 40px);
}

#pitch p {
  color: white;
  font-family: 'Roboto', sans-serif;
  font-size: 1.5em;
  font-weight: 300;
}

.gallery {
  max-width: 1250px;
  margin: auto;
  padding-bottom: 60px;
  margin-top: 20px;
}

.gallery a {
  margin: 7px;
  display: inline-block;
}

.gallery img {
  -webkit-box-shadow: 0 0 10px -2px rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 10px -2px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s ease;
  max-width: 100%;
}

.gallery img:hover {
  -webkit-box-shadow: 0 0 10px -2px rgb(198, 246, 255);
  box-shadow: 0 0 10px -2px rgb(198, 246, 255);
  transform: scale(1.1);
}

#nav {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.btn_download,
.btn_discord,
.btn_patreon {
  color: rgb(255, 255, 255);
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  text-decoration: none;
  display: block;
  border-radius: 0;
}

.btn_download {
  box-shadow: 0 1px 0 0 #fff6af;
  background: linear-gradient(to bottom, #ffec64 5%, #ffab23 100%);
  background-color: #ffec64;
  border: 1px solid #fa2;
  display: inline-block;
  color: #333;
  text-shadow: 0 1px 0 #fe6;
  margin-top: 40px;
  width: 310px;
  height: 70px;
  font-size: 1.4em;
  line-height: 70px;
  max-width: 100%;
}

.btn_discord {
  background-color: #6284ff;
  margin-right: 10px;
  -moz-box-shadow: inset 0 -5px 0 rgb(62, 101, 160);
  -webkit-box-shadow: inset 0 -5px 0 rgb(62, 101, 160);
  box-shadow: inset 0 -5px 0 rgb(62, 101, 160);
  width: 150px;
  height: 50px;
  font-size: 1.2em;
  line-height: 50px;
}

.btn_patreon {
  background-color: #ff391f;
  margin-top: 1px;
  -moz-box-shadow: inset 0 -5px 0 rgb(165, 59, 33);
  -webkit-box-shadow: inset 0 -5px 0 rgb(165, 59, 33);
  box-shadow: inset 0 -5px 0 rgb(165, 59, 33);
  width: 150px;
  height: 50px;
  font-size: 1.2em;
  line-height: 50px;
}

#footer {
  color: rgba(255, 255, 255, 0.781);
  position: fixed;
  bottom: 5px;
  width: 100%;
  font-family: 'Roboto', sans-serif;
  font-size: 0.8em;
  letter-spacing: 0.6px;
  font-weight: 300;
  padding: 30px 0 20px;
}
