html, body {
    width: 100%;
  
    margin: 0;
  }

  body {
    background-image: url(bakgrund.svg);
    background-size: cover;
    height: 100vh;
    background-repeat: no-repeat;
    background-position-x: 75%;
    overflow: hidden;
  }
  
  /* sticky divven */
  
  #stickytop {
    background-color: #4F4789;
    position: fixed;
    width: 100vw;
    height: 12vh;
    text-align: center;
  
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11;
  }
  
  #text {
    color: #FFC997;
    text-align: center;
  
    font-family: 'Courier New', Courier, monospace;
    font-size: 4vh;
    font-weight: bold;
    text-decoration: none;
  }
  
  #stickybackground {
    background-color: #4F4789;
    position: sticky;
    width: cover;
    height: 12vh;
    text-align: center;
    z-index: 10;
  }
  
  #pengarpengar {
    display: none;
    color: #FFC997;
  }
  
  #navpengar {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 5vh;
    width: 50vw;
    background-color: #867BC1;
    border-radius: 5vh;
  
    position: relative;
    margin-top: 1.5vh;
    margin-left: 1.75vh;
  
  }
  
  #navpengarinner {
    color: #FFC997;
    font-size: 2.5vh;
    text-align: center;
    font-weight: bolder;
    font-family: 'Courier New', Courier, monospace§;
  }
  
  #navpengarinner:after {
    content: "kr";
  }
  
  
/*////////////////////*/
        /*coin*/
/*////////////////////*/

  #coin {
    position: relative;
    margin: 0 auto;
    width: 20vh;
    height: 20vh;
  }
  #coin div {
    margin-top: 5vh;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    -webkit-box-shadow: inset 0 0 45px rgba(255,255,255,.3), 0 12px 20px -10px rgba(0,0,0,.4);
       -moz-box-shadow: inset 0 0 45px rgba(255,255,255,.3), 0 12px 20px -10px rgba(0,0,0,.4);
            box-shadow: inset 0 0 45px rgba(255,255,255,.3), 0 12px 20px -10px rgba(0,0,0,.4);
  }
  .side-a {
    background-color: #bb0000;

    background-image: url(reddead2.png);
    background-repeat: no-repeat;
    background-size: 20vh;
    background-position-x: center;
    background-position-y: center;

    top: 11vh;
  }
  .side-b {
    background-color: #3e3e3e;

    background-image: url(reddead3.png);
    background-repeat: no-repeat;
    background-size: 20vh;
    background-position-x: center;
    background-position-y: center;

    top: 11vh;
  }
  
  #coin {
    transition: -webkit-transform 1s ease-in;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }
  #coin div {
    position: absolute;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .side-a {
    z-index: 100;
  }
  .side-b {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
  }
  
  #coin.heads {
    -webkit-animation: flipHeads 3s ease-out forwards;
    -moz-animation: flipHeads 3s ease-out forwards;
      -o-animation: flipHeads 3s ease-out forwards;
         animation: flipHeads 3s ease-out forwards;
  }
  #coin.tails {
    -webkit-animation: flipTails 3s ease-out forwards;
    -moz-animation: flipTails 3s ease-out forwards;
      -o-animation: flipTails 3s ease-out forwards;
         animation: flipTails 3s ease-out forwards;
  }
  
  @-webkit-keyframes flipHeads {
    from { -webkit-transform: rotateY(0); -moz-transform: rotateY(0); transform: rotateY(0); }
    to { -webkit-transform: rotateY(1800deg); -moz-transform: rotateY(1800deg); transform: rotateY(1800deg); }
  }
  @-webkit-keyframes flipTails {
    from { -webkit-transform: rotateY(0); -moz-transform: rotateY(0); transform: rotateY(0); }
    to { -webkit-transform: rotateY(1980deg); -moz-transform: rotateY(1980deg); transform: rotateY(1980deg); }
  }
  @keyframes flipHeads {
    from { -webkit-transform: rotateY(0); -moz-transform: rotateY(0); transform: rotateY(0); }
    to { -webkit-transform: rotateY(1800deg); -moz-transform: rotateY(1800deg); transform: rotateY(1800deg); }
  }
  @keyframes flipTails {
    from { -webkit-transform: rotateY(0); -moz-transform: rotateY(0); transform: rotateY(0); }
    to { -webkit-transform: rotateY(1980deg); -moz-transform: rotateY(1980deg); transform: rotateY(1980deg); }
  }

  /*////////////////////*/
        /*coiN END*/
/*////////////////////*/
  


#kopojken {
  position: absolute;

  margin-left: 5vw;
  margin-right: 5vw;
  bottom: 10vh;

  height: 43vh;
  width: 43vh;

  z-index: -1;
}

#komannen {
  visibility: hidden;

  position: absolute;

  margin-left: 3vw;
  bottom: 8vh;

  height: 1vh;
  width: 1vh;
}

@font-face {
  font-family: WBB;
  src: url(WesternBangBang-Regular.ttf);
}

#draw {
  position: absolute;

  font-family: WBB, 'Times New Roman', Times, serif;
  font-size: 9vh;
  text-align: center;

  justify-content: center;
  align-items: center;
  display: flex;

  height: 12.5vh;
  width: 22.5vh;

  background-color: #A51D1D;

  border-radius: 1vh;
  border-width: 0.7vh;
  border-color: black;
  border-style: double;
}

#drawParent {
  margin-top: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
}



.menuHeadings {
  font-family: WBB, 'Times New Roman', Times, serif;
  font-size: 23vw;
  margin-top: 10vh;
}

.menuPs {
  font-family: WBB, 'Times New Roman', Times, serif;
  font-size: 8vw;
  margin-top: 7vh;
  margin-bottom: 7vh;
}

.menuButtons {
height: 8vh;
width: 15vh;

border-radius: 1vh;
border-width: 0.7vh;
border-color: rgb(0, 0, 0);
border-style: double;

font-size: 3.4vh;
font-family: WBB, 'Times New Roman', Times, serif;
}

#startscreen {
  background-color: #000000e1;

  position: absolute;

  height: 100%;
  width: 100%;

  top: 0;

  color: white;



  display: flex;
  flex-direction: column;
  align-items: center;;
  justify-content: center;

  z-index: 9;
}




#winscreen {
background-color: #000000e1;

position: absolute;

height: 100%;
width: 100%;

top: 0;

color: white;



display: flex;
flex-direction: column;
align-items: center;;
justify-content: center;

z-index: 8;
}


#losescreen {
  background-color: #701515d7;

  position: absolute;

  height: 100%;
  width: 100%;

  top: 0;

  color: white;



  display: flex;
  flex-direction: column;
  align-items: center;;
  justify-content: center;
  
  z-index: 7;
}

  /* */
  
  
  @media only screen and (min-width: 600px) {
  
    #pengarpengar{
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bolder;
      font-family: 'Courier New', Courier, monospace§;
      font-size: 2.5vh;
      height: 5vh;
      width: 12vw;
      color: #FFC997;
      background-color: #867BC1;
      position: absolute;
      right: 10vw;
      border-radius: 2vh;
  }
  
  #pengarpengar:after {
      content: "kr";
  }
  
    #navpengar {
        display: none;
    }
  
    #slideshow-container {
        background-repeat: no-repeat;
        background-position-x: center;
        background-position-y: -35vh;
    }



    /*////////////////////*/
        /*coin*/
/*////////////////////*/

  body {
    background-image: url(bakgrund.svg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    overflow: hidden;
  }

  #coin {
    position: relative;
    margin: 0 auto;
    width: 20vh;
    height: 20vh;

    z-index: 1;
  }
  #coin div {
    margin-top: 20vh;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    -webkit-box-shadow: inset 0 0 45px rgba(255,255,255,.3), 0 12px 20px -10px rgba(0,0,0,.4);
       -moz-box-shadow: inset 0 0 45px rgba(255,255,255,.3), 0 12px 20px -10px rgba(0,0,0,.4);
            box-shadow: inset 0 0 45px rgba(255,255,255,.3), 0 12px 20px -10px rgba(0,0,0,.4);
  }
  .side-a {
    background-color: #bb0000;

    background-image: url(reddead2.png);
    background-repeat: no-repeat;
    background-size: 20vh;
    background-position-x: center;
    background-position-y: center;


  }
  .side-b {
    background-color: #3e3e3e;

    background-image: url(reddead3.png);
    background-repeat: no-repeat;
    background-size: 19vh;
    background-position-x: center;
    background-position-y: center;

    
  }
  
  #coin {
    transition: -webkit-transform 1s ease-in;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }
  #coin div {
    position: absolute;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .side-a {
    z-index: 100;
  }
  .side-b {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
  
  }
  
  #coin.heads {
    -webkit-animation: flipHeads 3s ease-out forwards;
    -moz-animation: flipHeads 3s ease-out forwards;
      -o-animation: flipHeads 3s ease-out forwards;
         animation: flipHeads 3s ease-out forwards;
  }
  #coin.tails {
    -webkit-animation: flipTails 3s ease-out forwards;
    -moz-animation: flipTails 3s ease-out forwards;
      -o-animation: flipTails 3s ease-out forwards;
         animation: flipTails 3s ease-out forwards;
  }
  
  @-webkit-keyframes flipHeads {
    from { -webkit-transform: rotateY(0); -moz-transform: rotateY(0); transform: rotateY(0); }
    to { -webkit-transform: rotateY(1800deg); -moz-transform: rotateY(1800deg); transform: rotateY(1800deg); }
  }
  @-webkit-keyframes flipTails {
    from { -webkit-transform: rotateY(0); -moz-transform: rotateY(0); transform: rotateY(0); }
    to { -webkit-transform: rotateY(1980deg); -moz-transform: rotateY(1980deg); transform: rotateY(1980deg); }
  }

  /*////////////////////*/
        /*coiN END*/
/*////////////////////*/
  


#kopojken {
    position: absolute;

    right: -7vh;
    bottom: 3vh;

    top: 25vh;

    height: 65vh;
    width: 65vh;
}

#komannen {
  visibility: visible;

  position: absolute;

  margin-left: 3vh;
  bottom: 15.25vh;

  height: 55vh;
  width: 65vh;
}

@font-face {
    font-family: WBB;
    src: url(WesternBangBang-Regular.ttf);
}

#draw {
    position: absolute;

    font-family: WBB, 'Times New Roman', Times, serif;
    font-size: 6vh;
    text-align: center;

    justify-content: center;
    align-items: center;
    display: flex;

    height: 7vh;
    width: 17vh;

    background-color: #A51D1D;

    border-radius: 1vh;
    border-width: 0.7vh;
    border-color: black;
    border-style: double;
}

#drawParent {
    margin-top: 37.5vh;
    display: flex;
    align-items: center;
    justify-content: center;
}



.menuHeadings {
    font-family: WBB, 'Times New Roman', Times, serif;
    font-size: 5vw;
    margin-top: 10vh;
}

.menuPs {
    font-family: WBB, 'Times New Roman', Times, serif;
    font-size: 1.5vw;
    margin-top: 7vh;
    margin-bottom: 7vh;
}

.menuButtons {
  height: 8vh;
  width: 15vh;

  border-radius: 1vh;
  border-width: 0.7vh;
  border-color: rgb(0, 0, 0);
  border-style: double;

  font-size: 3.25vh;
  font-family: WBB, 'Times New Roman', Times, serif;
}

#startscreen {
    background-color: #000000e1;

    position: absolute;

    height: 100%;
    width: 100%;

    top: 0;

    color: white;



    display: flex;
    flex-direction: column;
    align-items: center;;
    justify-content: center;

    z-index: 9;
}




#winscreen {
  background-color: #000000e1;

  position: absolute;

  height: 100%;
  width: 100%;

  top: 0;

  color: white;



  display: flex;
  flex-direction: column;
  align-items: center;;
  justify-content: center;
  
  z-index: 8;
}


#losescreen {
    background-color: #701515d7;

    position: absolute;

    height: 100%;
    width: 100%;
  
    top: 0;
  
    color: white;
  
  
  
    display: flex;
    flex-direction: column;
    align-items: center;;
    justify-content: center;
    
    z-index: 7;
}

  }
  
  