/*--------------------SCAFFOLDING------------------*/
* {
  margin: auto 0;
  box-sizing: border-box;
}

body {
  color: #fff;
  font-size: 112.5%;
  font-family: 'Lobster', sans-serif;
  background: url('../img/bg.jpg') no-repeat center center fixed;
  background-size: cover;
}

.container {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 30px;
}

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

.container__img {
  display: block;
  text-align: center;
  margin: 30px 20px 50px 20px;
}

.clearfix::after {
  display: table;
  content: "";
  line-height: 0;
  clear: both;
}
/*--------------------END SCAFFOLDING------------------*/

h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

h2 {
  font-family: 'Anton', sans-serif;
  margin-bottom: 100px;
  font-size: 2rem;
  word-spacing: 3px;
  letter-spacing: 5px;
  font-weight: lighter;
}

p {
  font-family: 'Anton', sans-serif;
  font-weight: lighter;
  letter-spacing: 3px;
}

.btn {
  background-color: turquoise;
  padding: 30px;
  margin-bottom: 100px;
  transition: all 0.5s ease-out;
  cursor: pointer;
  font-family: 'Anton', sans-serif;
  letter-spacing: 2px;
  word-spacing: 10px;
  color: #fff;
  text-decoration: none;
}

.btn:hover {
  background-color: cornflowerblue;
}

.img-responsive {
  width: 100%;
}

@media(min-width: 520px) {
  .container__img {
    display: block;
    text-align: center;
    margin: 30px 0 50px 0;
  }

  .img-responsive {
    width: 50%;
  }
}
