* {
  padding: 0px;
  margin: 0px;
  font-family: Georgia, "Times New Roman", Times, serif;
}
* header {
  display: grid;
  grid-template-columns: auto auto;
  border-bottom: solid 5px black;
  background-color: black;
  color: pink;
}
* header h1 {
  justify-self: right;
}
* header div {
  display: grid;
  grid-template-rows: auto auto auto;
  justify-self: right;
}
* header div a {
  color: palevioletred;
  text-decoration: none;
}
* main {
  height: 100vh;
  background-color: pink;
}
* main .about {
  text-align: justify;
  padding-left: 250px;
  padding-right: 250px;
}
* footer {
  background-color: black;
}
* footer div {
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
* footer a {
  color: white;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
  justify-self: center;
}/*# sourceMappingURL=styleabout.css.map */