:root {
  --primary-color: rgba(46, 32, 46, 0.596);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-image: linear-gradient(white, var(--primary-color), rgba(46, 32, 46, 0.596));
  height: 100vh;
}

header .head {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em;
  background-color: rgb(34, 15, 34);
  color: white;
  font-size: 1.2em;
  font-family: Impact;
  font-weight: bold;
  border-bottom-left-radius: 1.5em;
  border-bottom-right-radius: 1.5em;
}

main {
  display: flex;
  text-align: center;
  padding: 2em;
  font-family: sans-serif;
  margin: 2em 0em 2em 0em;
  font-size: 1.1em;
}

footer section.footer {
  display: flex;
  justify-content: center;
  font-size: 2em;
  font-family: cursive;
  text-shadow: 1px 1px 5px white;
  width: auto;
}

@media only screen and (max-width: 800px) {
  body {
    color: black;
    display: flex;
    flex-direction: column;
    place-content: space-between;
  }
  footer section.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(191, 218, 245, 0.63);
    width: auto;
    height: 2em;
    background-color: rgb(34, 15, 34);
    text-shadow: 0px 0px 0px rgb(34, 15, 34);
  }
}/*# sourceMappingURL=about.css.map */