a {
  color: inherit;
  text-decoration: none;
}

html {
  height: 100%;
}

body {
	padding: 0px;
	margin: 0px;
	height: 100%;
	width: 100%;
	font-family: sans-serif, "Noto Color Emoji", "Apple Color Emoji", "Segoe UI Emoji";
  display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

p {
  margin: 0;
}

#wrapper {
  height: 100%;
  width: 100%;
  background-color: #f7f7f7;
}

#header {
  height: 75px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  font-size: 3em;
  font-family: 'Montserrat', sans-serif;
  background-color: #F3E5AB;
}

#content {
  height: calc(100% - 100px);
  display: flex;
  flex-direction: column;
}

#par1 {
  height: 40%;
  width: 100%;
  /* background-color: pink; */
}

#button-container {
  height: 20%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: green; */
}

#start-button {
  padding: 1em;
  font-size: 2em;
  user-select: none;
  background-color: #cccccc;
  transition: background-color 0.5s, color 0.5s;
  border-radius: 15px;
}

#start-button:hover {
  background-color: gray;
  color: #F3E5AB;
  transition: background-color 0.5s, color 0.5s;
}

#par2 {
  height: 40%;
  width: 100%;
  /* background-color: yellow;#bfbfbf */
}

#footer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  width: 100%;
  font-family: "Noto Color Emoji", "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  background-color: #d5f4e6;
}

@media screen and (min-width: 1000px){
  #wrapper {
    width: 1000px;
  }
}
