html {
  font-size: 10px;
}

body {
  background-image: url('img/bg-tile.jpg');
}

.container {
  align-items: center;
  display: flex;
  justify-content: center;
  height: 90vh;
}

.logo { 
  width: 100px;
}

.header { 
  color: #0f0904;
  font-family: 'Rock Salt', cursive;
  font-size: 4rem;
  letter-spacing: -0.039em;
  line-height: 1.3;
  margin: 15px auto;
  max-width: 275px;
  text-align: center;
  text-transform: uppercase;
}

.container__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
}

@media (min-width: 700px) {
  .logo {
    width: 175px;
  }
  .header {
    font-size: 10rem;
    margin-top: 25px;
    max-width: 500px;
  }
}