      html,
      h1,
      h2,
      h3,
      h4,
      h5,
      h6,
      p,
      div,
      body {
        padding: 0;
        margin: 0;
        color: #fff;

      }
      body {
        font-size: 10px;
        font-family: "Lato", Helvetica, Arial, sans-serif;
      }
      * {
        box-sizing: border-box;
      }
      .center {
        text-align: center;
      }

      @font-face {
        font-family: 'DynaPuff';
        src: url('../../fonts/DynaPuff-Medium.ttf') format('truetype');
        font-weight: normal;
        font-style: normal;
      }

      #home {
        display:flex; flex-direction: column;        
        background-size: contain;
        background: url('../../imgs/other/bkg_green03.svg') repeat;
        background-position-y: -200px;
      }

      #menu {
        width: 80vw;
        height: 5vh;
        display: flex;
        flex-direction: row-reverse;        
        align-self: center;
     
      }

      #top-menu {        
        height: 7vw;
        border-color: #a2ca71;
        border-bottom-style: solid;
        border-bottom-left-radius: 1vw;
        border-bottom-right-radius: 1vw;
        border-top-left-radius: 0vw;
        border-top-right-radius: 0vw;
        background-color: #003100;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }

      .menu-item-text {
        font-size: 3vw;
        font-weight: bolder;
        color: #a2ca71;
      }

      .menu-item-text-selected {
        font-size: 3vw;
        font-weight: bolder;
        color: white;
        text-decoration: underline;
        text-underline-offset: 0.6vw;
      }

      #footer {
        margin-top: 5vh; 
        height: 20vh; 
        display: flex; flex-direction: column;
        background-color: #003100;
      }

      #footer-content {
        margin-top: 2.5vh;
        display: flex; flex-direction: row; justify-content: center;        
      }

      #game-title {        
        font-size: 3.2vh;
        font-family: 'DynaPuff', sans-serif;
      }

      #main-content {
        display: flex;
        flex-direction: column;  
        justify-content: center;
      }

      #main-content > .area {
        width: 80vw;
        margin-top: 7vw;
        align-self: center;
      }

      #main-content > #area-title {
        width: 80vw;
        height: 7vw;
        margin-top: 6vh;
        margin-bottom: 1vh;
        align-self: center;
      }

      #main-content > #area-middle {
        width: 80vw;
        align-self: center;
        display: flex;
        flex-direction: column;
      }

      #main-content > #area-middle > #area-game {
        border-style: solid; border-width: 4px; border-radius: 20px; border-color: #ffffff;
        height: 65vw; 
        width: 80vw;
        overflow: hidden;
        position: relative;
        align-self: center;
        background-image: url('../common/bkground_blue_board.svg'); 
        background-size: 101% 101%; 
        background-repeat: no-repeat; 
        background-position-x: center
      }

      #main-content > #area-middle > #area-rules {
        border-radius: 20px;
        width: 80vw;
        background-color: #005100;
        margin-bottom: 3vw;
      }

      #main-content > #area-middle > #area-learning {
        border-radius: 20px;
        width: 80vw;
        background-color: #005100;
        margin-top: 3vw;
      }


      #appleTypes {
        top: 0vw;
        position: relative;
      }

      .appleType1 {
        height: 5vw; 
        width: 5vw;
        background-image: url('../common/red-apple-h1.svg');
        background-size: contain;
        cursor: pointer;
        position: absolute;
      }

      .appleType2 {
        height: 5vw; 
        width: 5vw;        
        background-image: url('../common/red-apple-h2.svg');
        background-size: contain;
        cursor: pointer;
        position: absolute;
      }

      .appleType3 {
        height: 5vw; 
        width: 5vw;        
        background-image: url('../common/red-apple-h3.svg');
        background-size: contain;
        cursor: pointer;
        position: absolute;
      }

      .appleType {
        height: 5vw; 
        width: 5vw;                
        background-size: contain;
      }

      .slot-nr {
        height: 30vw; 
        width: 30vw;
        top: 9.5vw;        
        display: block;
        position: absolute;
        font-size: 20vw;
        text-align: center;
        font-family: 'DynaPuff', sans-serif;
      }

      #slot0 { left: 0vw; }
      #slot1 { left: 24vw; }
      #slot2 { left: 48vw; }

      #slot0-sh { top: 10vw; left:  0.5vw; color: #222266; }
      #slot1-sh { top: 10vw; left: 24.5vw; color: #222266; }
      #slot2-sh { top: 10vw; left: 48.5vw; color: #222266; }

      #main-content > .area-text {
        /*border-style: solid; border-width: 3px; border-radius: 10px; border-color: #ffffff;*/
        margin-top: 5vw;
        margin-bottom: 5vw;
        width: 80vw;
        overflow: hidden;
        position: relative;
        align-self: center;
      }
      
      .text-rule-title {
        font-size: 2.8vh;
        font-family: 'DynaPuff', sans-serif;
        margin: 1vh;
      }

      .text-rule {
        font-size: 2.0vh;
        font-family: 'DynaPuff', sans-serif;
        margin: 1vh;
        color: #a2ca71;
      }

      .text-learning-title {
        font-size: 2.8vh;
        font-family: 'DynaPuff', sans-serif;
        margin: 1vh;
      }

      .text-learning {
        font-size: 2.0vh;
        font-family: 'DynaPuff', sans-serif;
        margin: 1vh;
        color: #a2ca71;
      }


      .link {
        font-size: 1.9vh;
        color: white;
        text-decoration: none;
      }
      

      @media (min-aspect-ratio: 6/5) {

        html {
           height: 100%;
        }

        #top-menu {          
          height: 3vw;
        }

        .menu-item-text {
          font-size: 3vh;         
        }

        .menu-item-text-selected {
          font-size: 3vh;
          text-decoration: underline;
          text-underline-offset: 0.6vh;
        }

        .text-rule-title {
          font-size: 2.6vh;
          margin: 2vh;
        }

        .text-rule {
          font-size: 2.0vh;
          margin: 2vh;
        }

        .text-learning-title {
          font-size: 2.6vh;
          margin: 2vh;
        }

        .text-learning {
          font-size: 2.0vh;
          margin: 2vh;
        }        

        #game-title {
          font-size: 3.8vh;
          font-family: 'DynaPuff', sans-serif;
        }

        #main-content > .area {
          width: 80vw;
          height: 22vh;
          margin-top: 1vh;
          align-self: center;
        }

        #main-content > #area-title {
          width: 80vh;
          height: 7vh;
          margin-bottom: 0vh;
        }

        #main-content > #area-middle {
          height: 65vh; 
          width: 99vw;
          display: flex;
          flex-direction: row;
          justify-content: center;
        }

        #main-content > #area-middle > #area-game {
          height: 65vh; 
          width: 80vh;
        }

        #main-content > #area-middle > #area-rules {
          height: 65vh; 
          width: 30vh;
          margin-right: 3vh;
          margin-top: 0vw;
          margin-bottom: 0vw;
        }

        #main-content > #area-middle > #area-learning {
          height: 65vh; 
          width: 30vh;
          margin-left: 3vh;
          margin-top: 0vw;
          margin-bottom: 0vw;
        }        

        #appleTypes {
          top: 0vh;          
        }

        .appleType1 {
          height: 5vh; 
          width: 5vh;
        }

        .appleType2 {
          height: 5vh; 
          width: 5vh;
        }

        .appleType3 {
          height: 5vh; 
          width: 5vh;
        }

        .appleType {
          height: 5vh; 
          width: 5vh;                
          background-size: contain;
        }

        .slot-nr {
          height: 30vh; 
          width: 30vh;
          top: 9.5vh;        
          display: block;
          position: absolute;
          font-size: 20vh;
          text-align: center;
          font-family: 'DynaPuff', sans-serif;
        }

        #slot0 { left: 0vh; }
        #slot1 { left: 24vh; }
        #slot2 { left: 48vh; }

        #slot0-sh { top: 10vh; left:  0.5vh; color: #222266; }
        #slot1-sh { top: 10vh; left: 24.5vh; color: #222266; }
        #slot2-sh { top: 10vh; left: 48.5vh; color: #222266; }
  

        #main-content > .area-text {
        /*border-style: solid; border-width: 3px; border-radius: 10px; border-color: #ffffff;*/
          margin-top: 2vw;
          margin-bottom: 2vw;
          width: 35vw;
          margin-left: 40vw;
          overflow: hidden;
          position: relative;
          align-self: right;
          text-align: right;
        }

        #footer {
          margin-top: 5vh; 
          height: 20vh; 
          display: flex; flex-direction: column;
          background-color: #003100;
        }

        #footer-content { 
          margin-top: 2.5vh;
          display: flex; flex-direction: row; justify-content: center;        
        }
      }
