/*!
 * Designed by Square in Houston, Texas (http://squarehouston.com)
 * Copyright 2021 Square Design Firm
 */

* {
  box-sizing: border-box;
}
html,
body {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #171c21;
}
ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: #657183;
  transition: all ease-in-out 0.25s;
  -moz-transition: all ease-in-out 0.25s;
  -ms-transition: all ease-in-out 0.25s;
  -o-transition: all ease-in-out 0.25s;
  -webkit-transition: all ease-in-out 0.25s;
  cursor: pointer;
}
a:hover {
  color: #49586d;
  text-decoration: underline;
}

p {
  font-size: 25px;
  line-height: 30px;
  -webkit-margin-before: 0.5em;
  -webkit-margin-after: 2em;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}
h1 {
  font-size: 60px;
  -webkit-margin-before: 0em;
  font-weight: bold;
  color: #566775;
  line-height: 60px;
}
h2,
h3,
h4,
h5,
h6 {
  -webkit-margin-before: 0.5em;
  -webkit-margin-after: 0.5em;
}

main {
  text-align: center;
  width: 550px;
  flex-flow: column;
}

.container {
  max-width: 1200px;
  margin: 80px auto;
  display: flex;
}

footer {
  font-size: 12px;
  text-align: center;
  color: #908b9c;
  width: 600px;
}
