* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  box-sizing: border-box;
  list-style-type: none;
}
html {
  min-height: 100%;
}
body {
  display: grid;
  margin: 10px;
  background-color: rgb(249, 118, 153);
  color: rgb(50, 156, 83);
  font-family: 'Gruppo', cursive;
}
a {
  color: rgb(110, 82, 36);

}

.header {
  display: flex;
  margin: auto;
  justify-content: center;
  text-align: center;
  font-family: 'Homemade Apple', cursive;
  color: rgb(110, 82, 36);
}
.sidebar {
  display: grid;
  width: 30%;
  text-align: center;
  color: rgb(50, 156, 83);
  font-family: 'Gruppo', cursive;
  font-size: 15px;
}
/*.dropoption {
  position: relative;
  display: inline-block;
  z-index: 1;
}*/
button {
  margin: 1em;
  padding: 1em;
  display: inline-block;
  background-image: linear-gradient(rgb(157, 204, 43), rgb(11, 94, 6));
  border: 1px solid rgb(50, 156, 83);
  border-radius: 5px;
  font-family: 'Gruppo', cursive;
  cursor: crosshair;
  z-index: 2;
}
button:hover {
  background-image: linear-gradient(rgb(11, 94, 6), rgb(157, 204, 43));

}
dropoption {
 display: none;
}
button:hover, .dropoption {
 display: inline-block;
 position: relative;
}
.main {
  display: grid;
  margin: auto;
  padding: 1.5em;

}
.footer {
  display: flex;
  margin: auto;
  text-align: right;
  font-family: 'Homemade Apple', cursive;
  font-size: 1em;
}
.container {
grid-template-columns: 1fr 2fr 1fr;
grid-template-rows:auto;
grid-template-areas:
"header" "header" "header"
"sidebar" "main" "deco"
"footer" "footer" "footer";
align-items: center;
}