* {
    background-color: darkslategrey;
}


@font-face {
    font-family: "dots";
    src: url('fonts/KARNIVOD.ttf') format('truetype');
}

body {
    display: grid;
    place-items: center;
    height: 98vh;
    width:98vw;
    overflow: hidden;
    background-color: darkslategrey;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer;
}

td {
    text-align: center;
    justify-content: center;
}
table {
    width: 100%;
    margin-bottom: -30px;
}

.micropic {
    width: 4vmin;
    
}

p {
    padding:10px;
    text-align: justify;
}
.slotReihe {
    height: 40vh;
    width: auto;
}

.actionButton {
    width: 10vh;
    aspect-ratio: 1;
}

#display {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    background-color: black;
    padding: 5px;

}

.actionButton,
#startButton {
    border-radius: 50%;
    margin: 10%;
    font-weight: bold;
}

.okbutton {
    padding: 0px 30px;
}
#links {
    border-bottom-left-radius: 50px;
    border-top-left-radius: 50px;
}
#rechts {
    border-bottom-right-radius: 50px;
    border-top-right-radius: 50px;
}

#table,
#scoreanimation {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 4vmin;
    color: lightgreen;
}
.displaybox {
    background-color: lightgray;
    border: 5px solid;
    border-color: white black black white;;
    margin: 5px;
    padding: 5px;
}
.dots {
    font-family: dots;
    font-size: 5vmin;
    color: white;
}

.minipic {
    border-radius: 15px;
    width: 7vh;
}

.neon {
    border: 0.2rem solid #fff;
    border-radius: 2rem;
    padding: 0.4em;
    box-shadow: 0 0 .2rem #fff,
              0 0 .2rem #fff,
              0 0 2rem green,
              0 0 0.8rem green,
              0 0 2.8rem green,
              inset 0 0 1.3rem green; 
              text-align: center;
}  

#imgReihe {
padding: 20px;
}

.center {
    display: grid;
    place-items: center;
}
.links {
    text-align: left;
}

.overlay {
    position: absolute;
    z-index: 9;
    background-color:darkslategrey ;
}

#menu {
    position: fixed;
    top: 10px;
    left: 10px;
}

#ingamemenuscreen {
    background: transparent;
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 8;
}
.layer {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    border-radius: 0%;
    z-index: 7;
    background-color: darkslategrey;
    opacity: 0.8;
}
#showmenu {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 8;
    text-align: center;
    font-size: 3vmin;
    background-color: darkslategrey;
}
#scoreanimation,
#levelGeschafft,
#gameover {
    position: fixed;
    top: 50vh;
    left: 50vw;
    width: 50%;
    height: 50%;
    transform: translate(-50%,-50%);
    z-index: 8;
    text-align: center;
    font-size: 3vmin;
    background-color: darkslategrey;
}
.halbebreite {
    width: 70vw;
}

.black {
    background-color: black;
    border-radius: 2rem;
}

#slotmachinepic {
    max-width: 75vw;
    max-height: 50vh;
}

.fadeIn {
    animation:fadein 0.5s;
    -moz-animation:fadein 1.0s;
    -webkit-animation:fadein 0.5s;
}

@keyframes fadein {
    from{opacity:0;}to{opacity:1;}
}
@-moz-keyframes fadein {
    from{opacity:0;}to{opacity:1;}
}
@-webkit-keyframes fadein{
    from{opacity:0;}to{opacity:1;}
}
@-o-keyframes fadein{
    from{opacity:0;}to{opacity:1;}
}