h1 {
  font-size: 20px;
  color: red;
  font-family:Helvetica, sans-serif;
  font-style: thin;
}

h2 {
  font-size: 140px;
  color: red;
  font-family:Helvetica, sans-serif;
  font-style: thin;
}

h3 {
  font-size: 80px;
  color: red;
  font-family:Helvetica, sans-serif;
  font-style: thin;
}

-----------

/* here the rules for small windows */
@media (max-width: 500px) { 
    #cirkelcontainer {
         display: none;
    }
    h3 {
         word-wrap: break-word;
    }
}

/* here the rules for windows between 500px and 900px */
@media (min-width: 500px) and (max-width: 900px) {
    form button {
         width: 125px;
    }
}
-----------

#page {
  display: grid;
  width: 1%;
  height: 700px;
  grid-template-areas: "head head"
                       "nav  main"
                       "nav  foot";
  grid-template-rows: 50px 1fr 50px;
  grid-template-columns: 350px 1fr;
}





#page > header {
  grid-area: head;
  background: white;
  animation: mymove 0.1s infinite;
}

@keyframes mymove {
  from {background-color: white;}
  to {background-color: black;}
}

#page > nav {
  grid-area: nav;
  background: green;
  animation: mymove 0.2s infinite;
}

@keyframes mymove {
  from {background-color: white;}
  to {background-color: black;}
}

#page > main {
  grid-area: main;
    background: green;
  animation: mymove 0.3s infinite;
}

@keyframes mymove {
  from {background-color: white;}
  to {background-color: black;}
}

#page > footer {
  grid-area: foot;
    background: green;
  animation: mymove 0.5s infinite;
}

@keyframes mymove {
  from {background-color: white;}
  to {background-color: black;}
}















