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

body {
  font-family: Arial, Helvetica, sans-serif;
  height: 100vh;
  width: 100%;
  line-height: 1.4;
  background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(0, 0, 0, 0.6)),
    url(bg.webp) no-repeat center/cover;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

h1.title {
  color: #fff;
  font-size: 4rem;
}

h1.title span {
  color: rgb(218, 165, 32);
  letter-spacing: 1px;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.25rem 0.5rem;
}

p.subtitle {
  color: #fff;
  letter-spacing: 1px;
  margin: 1rem 0;
  font-size: 2.5rem;
  font-style: italic;
}

@media (max-width: 750px) {
    .container{
        padding: 0 0.25rem;
    }
  h1.title {
    text-align: center;
    font-size: 3rem;
  }
  h1.title span {
    display: block;
  }

  p.subtitle{
      font-size: 1.5rem;
  }
}