body {
  overflow: hidden;
  background-color: rgb(41 50 39/1);
}

body:before {
  background-image: url(./noise.png);
  background-repeat: repeat;
  content: "";
  height: 100%;
  opacity: .25;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
}

#wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80vw;
  max-width: 1200px;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transform: translate(-50%, -50%);
}

#logo-wrapper {
  width: 100%;
  max-width: 50vw;
  max-height: 50vh;
}

#logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, .2));
}

.info {
  display: block;
  width: 100%;
  margin-top: 50px;
  text-align: center;
  font-family: Raleway, sans-serif;
  font-size: 60px;
  color: #f73c0c;
}

@media screen and (max-width: 768px)
{
  .info {
    font-size: 40px;
  }
}

@media screen and (max-width: 500px)
{
  .info {
    font-size: 26px;
  }
}
