body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    text-align: center;
    touch-action: manipulation;
    overflow-x: hidden;
}

#navbar {
    margin-top: 20px;
    text-align: center;
}

.level-button {
    border-radius: 2em;
    width: 120px;
    height: 40px;
    background-color: #0219ac;
    color: white;
    border: none;
    cursor: pointer;
    margin: 5px;
    font-size: 14px;
}

.level-button:hover {
    background-color: #0e8bff;
    color: black;
}

#instructions {
    margin-top: 20px;
    font-size: 48px;
    color: #333;
}

#mfwj-hyx2fqxj1 {
    margin-top: 5%;
    padding: 5%;
}

.box {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    background-color: white;
    cursor: pointer;
}

.nobox {
    height: 48px;
    width: 48px;
    border: 2px solid white;
    background-color: transparent;
    border-radius: 50%;
    cursor: pointer;
}

.spreadoutbox {
    height:36px; 
    width: 36px; 
    background-color: white; 
    outline: none; 
    border-radius: 50%; 
    cursor: -webkit-grab; 
    cursor: grab; 
    margin: 25px;
}

/* Small mobile devices */
@media screen and (max-width: 600px) {
    .spreadoutbox {
        height: 15px;
        width:15px;
        margin: 1%;
    }  
    #instructions {
        font-size: 20px;
    }
    .box {
        height: 36px;
        width:  36px;
    }
    .nobox {
        height: 36px;
        width: 36px;
    }
}
/* Regular mobile devices */
@media screen and (min-width: 700px) {
    .spreadoutbox {
        height: 20px;
        width: 20px;
        margin: 1%;
    }  
    #instructions {
        font-size: 20px;
    }
    .box {
        height: 36px;
        width:  36px;
    }
    .nobox {
        height: 36px;
        width: 36px;
    }
}

@media screen and (min-width: 800px) {
    .spreadoutbox {
        height: 24px;
        width: 24px;
        margin: 1%;
    }  
    #instructions {
        font-size: 24px;
    }
    .box {
        height: 36px;
        width: 36px;
    }
    .nobox {
        height: 36px;
        width: 36px;
    }
}

/* Regular laptops devices */
@media screen and (min-width: 992px) {
    .spreadoutbox {
        height: 36px;
        width: 36px;
        margin: 25px;
    }  
    .box {
        height: 48px;
        width: 48px;
    }
    .nobox {
        height: 48px;
        width: 48px;
    }
}



#bar{
    bottom: 0% ;
    position: fixed;
    background-color: rgb(87, 87, 87);
    opacity: 0.5;
    color: white;
    width: 100%;
    height: 15%;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    text-align: left;
}

#bar:hover{
    opacity: 1;
}

#bar img{
    margin-top:20px;
    margin-bottom: 2%;
    margin-left: 1%;
    
    width:10vh;
    height: 10vh;
}

#bar img:hover{
   transform: scale(1.1);
   transition: transform 0.3s ease-in-out;
}

#bar label{
    top: 0px;
    position: absolute;
}

.slide-in-row {
    transition: transform 1.5s cubic-bezier(.68,-0.55,.27,1.55);
    will-change: transform;
}
.slide-in-left {
    transform: translateX(-100vw);
}
.slide-in-right {
    transform: translateX(100vw);
}
.slide-in-center {
    transform: translateX(0);
}