html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  background-color: #001689;
}

.container {
  max-width: 1200px;
  width: 95%;
  margin: 0 auto;
  padding: 0 20px;
}

.landing__banner {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing__banner-title {
  font-size: 40px;
  text-transform: uppercase;
  color: #FFFFFF;
}

@media (min-width: 768px) {
  .landing__banner-title {
  font-size: 60px;
}
}