html {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 100%;
  background-color: #e7a050;
  min-width: 100%;
  min-height: 100%;
}

body {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: auto auto auto;
  min-width: 95%;
  min-height: 95%;
}

a {
  text-decoration: none;
  color: black;
}

a:hover {
  background-color: white;
}

main {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 100%;
  min-width: 100%;
  min-height: 100%;
}

h3 {
  text-decoration: underline;
}

/*Kopf*/

 header {
   border-top: solid black 2px;
   border-right: solid black 2px;
   border-left: solid black 2px;
   display: grid;
   grid-template-columns: 100%;
   grid-template-rows: 100%;
   align-items: center;
   text-align: center;
   font-size: 150%;
   text-shadow: 3px 3px black;
   color: white;
   background-image: url(/media/sportlerheim.png);
   background-size:cover; 
   background-position: center;
}

/*Nav*/

#hauptnav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  text-align: center;
  align-items: center;
  border: solid black 2px;
  font-size: 140%;
  background-color: #e7a050;
  margin: 0;
  padding: 0;
}

#shopnav {
  display: none;
}

#mobnav {
  display: block;
}

/*Main*/

 figure {
   margin: 0;
   padding: 0 0 0 0;
   display: grid;
   width: 100%;
   height: 100%;
   grid-template-columns: 85% 15%;
   background-color: #e7a050;
 }

 iframe {
   display: grid;
   min-width: 100%;
   min-height: 800px;
   height: 100%;
 }

#daschu {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 1fr;
  height: auto;
  padding: 2%;
  background-color: #e7a050;
}

.daschu {
  margin: 0;
}

#randzeile {
  background-color: #e7a050;
}

#vv::before {
  content: "Frank Bräuer";
}

/*Fußzeile mobil*/

footer {
  display: none;
}

#mitgl {
  display: none
}

#mobonly {
  display: none;
}


/*//////////////////////////////////////////////////////*/

@media (max-width: 810px) {

  figure {
    display: grid;
    grid-template-columns: 100%;
    margin-top: .3%;
    min-height: 500px;
  }
  
  #mobonly {
    display: block;
  }
  
  .antragbutton{
    font-size: 150%;
  }
  
  #mitgl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-column-gap: 5%;
    padding: 5%;
    margin: 20% 0 20% 0
    
  }

  footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    background-color: white;
    border: solid black 2px;
    margin-top: 1%;
    text-align: center;
    align-items: center;
    height: auto;
    border-radius: 10px;
  }
  

  iframe {
    display: grid;
    min-width: 100%;
    min-height: 500px;
  }

  body {
    display: grid;
    grid-template-rows: auto auto auto auto ;
  }

  header {
    font-size: 100%;
    border-bottom: solid black 2px;
    border-radius: 10px;
  }

  #hauptnav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    font-size: 120%;
    max-height: 100%;
    margin: 0;
    padding: 0;
    margin-top: .3%;
    border-radius: 10px;
  }

  #shopnav {
    display: block;
  }

  #mobnav {
    display: none;
  }

  #randzeile {
    display: none;
  }

}
