@charset "utf-8";

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

body {
  font-family: 'Klee One', cursive;
  font-size: 20px;
  color: #000000;
  line-height: 1;
  background-color: #ffffff;
}

header{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

main {
  margin-top: 40px;
  margin-bottom: 40px;
}

.bunner{
  width: 200px;
  margin-top: 40px;
}

.footer {
  color: white;
  background-color: #24211b;
  padding-top: 30px;
  padding-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  display: block;
  width: 235px;
  margin-top: 50px;
}

.footer-siteurl {
  font-size: 13px;
  margin-top: 16px;
}

.copyright {
  font-size: 14px;
  font-weight: bold;
  margin-top: 15px;
  margin-bottom: 60px;
}

@media (max-width: 800px) {

main {
  margin-top: 25px;
  margin-bottom: 25px;
}

.footer-siteurl {
  font-size: 11px;
  }
}