.grid-container {
  display: grid;
  grid-template-rows: 5% 1fr 5% 25% 5%;
  grid-template-columns: 15% 1fr 15%;
  width: 100%;
  height: 100%;
}
.front{
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
}
#Logo{
  display: block;
  background: url(Amazing-dev-logo.svg);
  grid-row: 2;
  grid-column: 2;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: auto;
  width: auto;
  background-size: auto, auto;
}
body{
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;

}
.page{
  width: 100%;
  height: 100%;
}
.background-Wrapper{
  z-index: 0;
  height: 100%;
  width: 100%;
  background: url(Website-background.svg);
  background-size: 100% auto;
  filter: blur(1px);
}

#heading{
  grid-row: 4;
  grid-column: 2;
  text-align: center;
  font-size: 9vmin;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}
#heading-wrapper{
  background-color: white;
  margin: 5px;
  padding: 5px;
  background-color: #74a892;
  color: white;
  display: inline-block;
}

#text{
  font-family: "My Custom Font";
  font-size: 10vh;
  text-align: center;
  grid-row: 3;
  grid-column: 2;
  color: #385a32;
}

#content-wrapper{
  grid-row-start: 1;
  grid-row-end: 4;
  grid-column: 2;
  background-color: #f5f5f5 ;
  border-radius: 20%;
}
#menue{
  padding-top: 1%;
  width: 100%;
  height: 30%;
  margin: 0;
}
#About-Us{
  width: 100%;
  height: 60%;
  text-align: center;
  margin: 0;
}
#About-Us > h1{
  font-size: 5vh;
}
#About-Us > p{
  padding-top: 1%;
  font-size: 4vh;
}
.menue-item{
  margin: 0 auto;

  width: 25%;
  height: 100%;
  background: url(About.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@font-face {
    font-family: "My Custom Font";
    src: url("Easy November.ttf") format("truetype");
}
