* {
    margin: 0;
}

@font-face {
    font-family: 'Digit';
    src: url('font/digit-font/Digit-V4Wl.ttf');
    font-weight: normal;
    font-style: normal;
}

body {
  width: 100vw;
  height: 100vh;
  background-image: url('img/background.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.content > * {
  position: absolute; 
  left: 0; 
  right: 0;
  bottom: 50%;
  margin-inline: auto; 
  width: fit-content;
}

.title {
  font-family: 'Digit';
  font-size: 5vw;
  color: white;
  text-shadow: 0px 0px 20px;
}

.desc {
  font-family: 'Digit';
  font-size: 2vw;
  color: white;
  text-shadow: 0px 0px 10px;
  top: 50%;
}

.tint {
  width: 100vw;
  height: 100vh;
  position: absolute;
  background-color: rgba(0,0,0,.5);
  background-blend-mode: multiply;
  background-size: cover;
}