* {
  font-weight: bold;
  box-sizing: border-box;
  outline: none;
}

html {
  width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: Verdana;
  margin: 75px 10vw;
  background-color: #aaa;
  color: #000;
}

h1 {
  font-size: 75px;
}

hr {
  position: fixed;
  top: 0px;
  left: 0px;
  margin: 0px;
  border: 1px dashed #000;
  background-color: #ee0;
  height: 10px;
}

p {
  text-indent: 1em;
  font-size: 35px;
}

p img {
  display: inline;
  height: 35px;
  width: auto;
  vertical-align: middle;
}

img {
  display: block;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

button {
  font-size: 35px;
  padding: 0px 35px;
  border: 3px solid;
  border-color: #000;
  border-radius: 10px;
  cursor: pointer;
  color: #aaa;
  height: 100px;
  background-image: url("./images/dirt.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

button:hover {
  transition: 250ms;
  border-color: #ee0;
  color: #ee0;
}
