@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Special+Elite&display=swap');

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}

body {
  background: url("bg.jpg") center center, #1C1B1B;
  background-size: cover;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 5rem;
}

.noise {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
  mix-blend-mode: screen;
}

.container {
  position: relative;
  z-index: 1;
  color: #ffffff;
  text-align: center;
  font-family: "Special Elite";
  font-size: 1.15rem;
  line-height: 1.5;
}

@media screen and (max-width: 600px) {
  .logo {
    width: 260px;
  }

  .noise {
    opacity: 0.5;
    mix-blend-mode: hard-light;
  }

  .container {
    font-size: 1rem;
    line-height: 1.4;
  }
}

@media screen and (max-width: 280px) {
  .logo {
    width: 200px;
  }

  .container {
    font-size: 0.9rem;
    line-height: 1.3;
  }
}