@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin: 0;
  font-family: "Poppins", sans-serif;
}

.container{
  display: flex;
  flex-direction: column;
  width: 800px;
  margin: 2em auto;
  padding: 1em;
  text-align: center;
  justify-content: center;
}
h1.title{
  font-family: "Alex Brush", cursive;
  font-size: 5em;
  line-height: .625em;
 
}
h1 span{
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-size: 1.5rem;
  
}
.icon{
    padding: .675em 0;

}
a{
  color: inherit;
}

@media(min-width: 786px)  {
  .container{
    max-width: 45em;
  }
}

@media(min-width: 992px)  {
  .container{
    max-width: 60em;
  }
}

@media(min-width: 1200px)  {
  .container{
    max-width: 72em;
  }
}