/* Font Import */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700');

/* Reset */
* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  outline: none;
  overflow: hidden;
}

/* Styling */
body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
  background-image: url('../img/bg.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  font-family: 'Montserrat', sans-serif;
}

h1 {
  color: #fff;
  font-size: 4.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}

a {
  color: #fff;
  font-size: 1.2em;
  background: #000;
  border: 2px solid black;
  border-radius: 5px;
  padding: 20px 40px;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

a:hover {
  color: #000;
  background: none;
}

/* Responsivity */
@media only screen and (max-width: 850px) {

  h1 {
    font-size: 3.5em;
  }

}

@media only screen and (max-width: 625px) {

  h1 {
    font-size: 2.5em;
  }

  a {
    padding: 20px 30px;
  }

}
