body{
  font-size: 12px;
}

.canvas{
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  background-image: url( '../images/background.jpg' );
  background-position: bottom 0 center;
  background-repeat: no-repeat;
  background-size: 100%;
  background-color: black;
}

a{
  display: block;
  width: fit-content;
  margin: 0 auto;
  color: rgb(255, 145, 125);
  line-height: 0.8rem;
  font-family: "JosefinSans";
  font-size: 0.8rem;
  text-transform: uppercase;
  text-decoration: none;
  background-color: white;
  border-radius: 20px;
  padding: 12px 20px 10px 20px;
  margin-top: 50px;
}

h1{
  width: 22%;
  margin: 0 auto;
  padding-top: 70px;
  margin-bottom: 30px;
}

h2{
  width: fit-content;
  text-align: center;
  margin: 0 auto;
  padding: 0 10px;
  text-transform: uppercase;
  font-family: "JosefinSans";
  font-weight: 900;
  font-size: 2.5rem;
  color: white;
  letter-spacing: 4px;
  text-shadow: rgb(0 0 0 / 20%) -1px -1px 4px;
}

h2 small{
  display: block;
  font-size: 1.5rem;  
  color: rgb(255, 145, 125);
  margin-bottom: 18px;
}

/** Mobile version **/
@media screen and (max-width: 980px)
{
  .canvas{
    background-size: auto 100vh;
    background-position: bottom 0 right 0;
  }
}

@media screen and (max-width: 768px)
{
  h1{
    width: 280px;
  }

  h2{
    font-size: 1.625rem;
  }
  h2 small{
    font-size: 1.125rem;
  }
}