* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: georgia,'Times New Roman', Times, serif;
}

body {
  padding: 2rem;
  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;
  background: #fcf1f1;
  height: 100vh;
}

h1 {
  text-decoration: underline;
}

h3 {
  padding: 1.5rem;
  color: red;
  font-size: 120%;
}

h3 span {
  color: #b305b3;
}

.grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 210px;
  width: 280px;
  margin-bottom: 6rem;
}

.grid img {
  height: 70px;
  width: 70px;
  padding: 0.6rem;
  border: 1px solid #db1414;
}

footer {
  background-color: inherit;
  text-align: center;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 100vw;
}

footer .socials {
  padding: 20px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .socials img {
  width: 25px;
  margin: 20px 20px;
}

footer .socials img:hover {
  background-color: #ff00b3;
  border-radius: 3px;
}

footer a {
  text-decoration: none;
}

footer a p {
  font-size: 10px;
  padding: 20px;
}

footer a p:hover {
  background-color: #f77ed2;
}

footer a:hover {
  -webkit-text-decoration: underline black;
          text-decoration: underline black;
  color: black;
}
/*# sourceMappingURL=style.css.map */