*
  {
  box-sizing: border-box;
  font-family: system-ui, sans-serif;
  font-size: 16px;
  font-weight: 300;
  margin: 0;
  padding: 0;
  }

html, body
  {
  height: 100%;
  }

body 
  {
  background-color: Turquoise; 
  padding: 10px;

  background-image: url("img/tausta1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  }

#alusta
  {
  background-color: rgb(200, 250, 230);
  display: grid;
  grid-gap: 3px;
  grid-template-rows: 100px auto 20px;
  grid-template-rows: 100px auto;
  height: 100%;
  margin: 0 auto;
  max-width: 100%;
  padding: 5px;
  width: 1100px;
  }

#alusta>*
  {
  background-color: rgb(160, 210, 190);
  }

#alusta>header
  {
  display: grid;
  grid-gap: 5px;
  grid-template-rows: auto 40px;
  }

#alusta>header h1
  {
  font-size: 2em;
  line-height: 1.0;
  margin-top: 15px;
  text-align: center;
  }

menu
  {
  background-color: rgb(140, 190, 180);
  padding: 5px;
  }

menu button
  {
  background-color: rgb(130, 220, 210);
  border: outset 2px rgb(190, 240, 230);
  height: 30px;
  padding: 0px 5px;
  }

menu button:hover
  {
  background-color: rgb(170, 230, 210);
  cursor: pointer;
  }

/*=======================================*/

main
  {
  display: flex;

  xxxdisplay: none;

  flex-wrap: wrap;
  overflow: auto;
  }

article
  {
  margin: 4px;
  flex-grow: 1;
  min-width: 300px;
  max-width: 600px;
  aspect-ratio: 4 / 2;

  background-color: rgb(140,180,220);

  background-image: url("img/tausta2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: center; 

  cursor: pointer;
  }

article header
  {
  margin: 0px;
  padding-bottom: 5px;
  background-color: rgba(0,0,0,0.4);
  }

article h1
  {
  font-size: 1.8em;
  text-align: center;
  color: white;
  }

article h2
  {
  font-size: 1.2em;
  font-weight: 350;
  text-align: center;
  color: white;
  }

article h3
  {
  font-size: 0.8em;
  font-weight: 400;
  line-height: 1.0;
  margin: 1px 0px;
  text-align: center;
  color: white;
  }

.inforuutu
  {
  position: relative;

  width: 800px;
  xxxheight: 700px;
  background-color: #cef;
  background-size: cover;
  background-position: center top; 
  border: 1px solid #cccccc;
  padding: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 5px;
  z-index:1000;
  }

.inforuutu h1
  {
  font-size: 2.0em;
  margin: 2px 0px;
  text-align: center;
  }

.inforuutu h2
  {
  font-size: 1.2em;
  font-weight: 350;
  text-align: center;
  }

.inforuutu h3
  {
  font-size: 0.8em;
  font-weight: 320;
  text-align: center;
  }

.inforuutu h4
  {
  margin: 16px 0px 8px;
  font-size: 1.6em;
  font-weight: 320;
  text-transform: capitalize;
  }



ul li:nth-child(6n+4),ul li:nth-child(6n+5),ul li:nth-child(6n+6) 
  {
  color: darkgreen;
  font-style: italic;
  }

.inforuutu a
  {
  color: inherit;
  font-style: inherit;
  }

.suljeInforuutu
  {
  position: absolute;
  top: 10px;
  right: 10px;
  border-width: 0;
  color: rgba(200,0,0,0.2);
  background-color: rgba(0,0,0,0);
  font-size: 5em;
  font-weight: 500;
  line-height: 0.7;
  cursor: pointer;
  }

.suljeInforuutu:focus 
  {
  outline: none;
  text-shadow: 0 0 4px rgba(250,250,250,0.2);
  }


ul 
  {
  list-style-position: inside;
  }

li
  {
  margin-left: 20px;
  line-height: 1.9;
  font-weight: 350;
  xxxfont-size: 1.6em;
  }

.kartta, #map
  {
  xxx

  xxxheight: 100%;
  xxxwidth: 100%;
  }

#map 
  {
  display: none;

  xxxposition: absolute;
  xxxheight: 100vh;
  xxxwidth: 100vw;
  border: none;
	background-color: #dde;
  }