
html {
    font-family: Gotham, sans-serif;
    background: #df9491;
    margin:0;
    padding:0;
}

nav {
    display: flex;
    justify-content: center;
    justify-items: center;
}

.simple-nav {
    /*visibility: hidden;*/
    line-height: 1.5;
    font-weight: bold;
    position: relative;
    top:-200px
}

.nav-center {
    text-align: center;
}

.dropdownmenu ul, .dropdownmenu li {
    background: #de9390;
    margin-left: auto;
    margin-right: auto;

}
.dropdownmenu ul {
    list-style: none;
}

.dropdownmenu li {
    float: right;
    position: relative;
    width:auto;
}
.dropdownmenu a {
    background: #563501;
    color: #FFFFFF;
    display: block;
    font: bold 12px/20px sans-serif;
    padding: 10px 25px;
    text-align: center;
    text-decoration: none;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}
.dropdownmenu li:hover a {
    background: #000000;
}
#submenu {
    left: 0;
    opacity: 0;
    position: absolute;
    top: 35px;
    visibility: hidden;
    z-index: 1;
}
li:hover ul#submenu {
    opacity: 1;
    top: 40px;	/* adjust this as per top nav padding top & bottom comes */
    visibility: visible;
}
#submenu li {
    float: none;
    width: 100%;
}
#submenu a:hover {
    background: #DF4B05;
}
#submenu a {
    background-color:#000000;
}

.tbl-container {
    position: relative;
    top: -130px;
}

.center {
    margin-left:2%;
    margin-right:2%;
}

.container {
    margin-top:30px;
    display: flex;
    flex-direction: column;
    min-width: 385px;
}

.frame {
    border: black solid 2px;
    border-radius: 12px;
    padding-top: 30px;
    padding-bottom: 30px;
    background: #b38b5a;
    margin-left:12%;
    margin-right: 12%;
}


.app-title {
    color: WHITE;
    padding: 10px;
    font-weight: bold;
    font-size: 1.5rem;
    text-shadow: black 5px 1px 3px;

}

.buttons {
    width:90%;
    margin:0 auto;
    text-align:center;
    font-size:1rem;
    font-weight: bold;
    color:#ffb800;
    background-color: #563500;
    border: solid black 2px;
    border-radius: 12px;
    padding-bottom: 20px;
}

.buttons a {
    padding-top: 50px;
    margin: 10px;
    display: inline-block;
    color: #ffffff;
    width:125px;
    height:125px;
    box-sizing:border-box;
    text-decoration: none;
    border-radius: 12px;
    border: solid black 3px;
    box-shadow: 4px 4px 4px 4px #000;
    background-color: #000000;
    transition:background-color 0.3s;
}

.buttons a:hover {
    background-color: #8d4e00;
}

.buttons a:active {
    color: #000000;
    background-color: #b38b5a;
    box-shadow:0 0 0 rgba(0,0,0,0.4) ;
    transition:all 0.1s
}

.special-fx  a {
    font-size:1rem;
    font-weight: bold;
    color: #000000;
    background-color: #ffffff;
    border: solid black 2px;
    border-radius: 50%;
}

.special-fx  a:hover {
    font-size:1rem;
    font-weight: bold;
    color: #ffffff;
    background-color: #8d4e00;
    border: solid black 2px;
    border-radius: 50%;
}

.special-fx  a:active {
    font-size:1rem;
    font-weight: bold;
    color: #000000;
    background-color: #4ac2ff;
    border: solid black 2px;
    border-radius: 50%;
}

.stop {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;

}

.stop a {
    background-color: #ce0300;
    color:white;
}

.stop a:hover {
    background-color: rgb(243, 76, 111);
    color:black;
}



.rr a {
    padding-top: 20px;
    width: 90%;
    max-width: 410px;
    background-color: #4ac2ff;
}

.rr a:hover {
    background-color: white;
}



audio {
    display:none
}

.disable_notif {
    display: flex;
    justify-content: center;
    line-height: 0;

;
}
@media screen and (max-width: 570px) {

    nav {
        visibility: hidden;
    }
    .simple-nav {
        visibility: initial;
        position: relative;
        top: -130px;
    }

    .simple-nav ul {
        list-style: none;
    }
    .simple-nav ul li a{
        color: black;
    }
}