* {
  box-sizing: border-box;
}

html {
  margin: 0px;
  font-family: 'Quicksand', sans-serif;
  background-color: #f6f6f6;
}

.header {
  width: 100%;
  height: 250px;
  border-bottom: 30px double coral;
  display: flex;
  background-image: url("../images/local-header.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

h1 {
  width: 500px;
  padding: 10px;
  padding-top: 90px;
  padding-left: 50px;
  margin-top: 110px;
  margin-left: 40px;
  display: flex;
  font-family: 'Cinzel Decorative', cursive;
  letter-spacing: 0.3em;
}

.button-contain {
  margin: auto 0;
  height: 250px;
  display: flex;
  flex-direction: column;
  padding: 30px;

}

p {
  margin: auto 0;
}

#toggle-but {
  margin: auto;
  clear: both;
  width: 250px;
  height: 40px;
  border-radius: 20px;
  padding: 5px;
  border: 2px solid black;
  background-color: #d0d2d3;
  color: white;
}

#toggle-but:focus {
  outline: none;
}

#toggle-but:hover {
  background-color: #60d3d0;
}

.display-pie {
  display: flex;
  justify-content: center;
}

footer {
  width: 100%;
  height: 120px;
}

.footer {
  font-size: 16px;
  text-transform: capitalize;
}


@media screen and (min-width: 320px and max-width: 500px;) {
  h1 {
    padding-top: 0;
  }
}
