.box{
    background-size: cover;
    border: 2px;
    border-color: black;
    border-style: solid;
    width: 30px;
    height: 30px;
    float: left;
    margin: 0px;
    padding: 0px;
}
.row{
    display:table-row;
    margin: 0px;
    padding: 0px;
    
}

.menu{
    width: fit-content;
    height: max-content;
}


.mask_box{
    background-color: black;
    width: 30px;
    height: 30px;
    float: left;
    margin: 0px;
    padding: 0px;
}

.mask_animation{
    -webkit-animation: fadeinout 2s linear forwards;
    animation: fadeinout 2s linear forwards;
}

@-webkit-keyframes fadeinout {
    0%{ opacity: 0; }
    100% { opacity: 1; }
}
  
@keyframes fadeinout {
    0%{ opacity: 0; }
    100% { opacity: 1; }
}


.timer-style {
    color: white;
    font-weight: bold;
    font-size: 1rem;
    margin-left: 10px;
  }
  



.mask{
    position:absolute;
    
}

.maze{
    position: absolute;
}

.maze_container{
    position: relative
}


.dropbtn {
    background-color: #2669ba;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
  }
  
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 100px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  .dropdown-content a:hover {background-color: #ddd;}
  
  .dropdown:hover .dropdown-content {display: block;}
  
  .dropdown:hover .dropbtn {background-color: #0959bc;}

