html {
  padding: 0;
  margin: 0;
  height: 100%;
  font-family: "Quicksand", sans-serif;
}

body {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: #FFFEF9;
  padding-top: 80px;
  margin: 0;
  box-sizing: border-box;
}

#main {
  flex: 1;
}

p {
  margin: 0px;
}

#header {
  background: #c68c87;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: fixed;
  height: 80px;
  top: 0;
  width: 100%;
}

#header img {
  margin-top: 5px;
  margin-left: 5px;
}

#header > .menu {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex: 1;
}

#header > .menu > .btn {
  color:  white;
  justify-content: center;
  padding: 20px 15px;
  font-size: 2em;
  text-decoration: none;
}

#footer {
  align-self: center;
}
