* {
    padding: 0;
    margin: 0;
    font-family:Arial, Helvetica, sans-serif;
}

body {
    background: #3B4C75;
    background: #3B4C75;
    background: radial-gradient(at center bottom, #3B4C75, #010101);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 50px 0;
    position: relative;

}



section {
    background-color: #151E33;
    text-align: center;
    border-radius: 20px;
}

img{
    width: 150px;
}


.arena {
    width: 500px;
    height: 500px;
    
    position: relative;
    background: url("img/ARENAD.png");
    background-repeat: no-repeat;
    background-size: cover;
    margin: 20px 30px ;


}


#robot {
    position: absolute;
    background-color: #242222;
    width: 40px;
    height: 50px;
    color: white;
    font-size: 13px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
  
    opacity: 0;
     /*transition: 1s all;  */
}

span {
    background-color: #000000;
    width: 100px;
    height: 20px;
}


select {
    margin: 20px 0 ;
    border: none;
    padding: 10px;
    border-radius: 10px;
    background-color:#3B4C75;
    color: rgb(8, 16, 24);
    color: white;
}

select:hover{
    cursor: pointer;
    background-color:#566ea7;
}

button {
    padding: 20px 30px;
    color: white;
    background-color: #8097ce;
    border: none;
    border-radius: 10px;
    transition: 1s all;
    
}

button:hover {
    background-color: #5d6e96;
    cursor:pointer;
    color: rgb(189, 189, 189);
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-pause {
    width: 40px;
    height: auto;
    padding: 0 20px;
}
#pause {
    display: none;
}
#play {
    cursor:not-allowed;
}

input {
    display: none;
}


.yellow-sample,.blue-sample,.red-sample,#yellow-sample-init, #blue-sample-init, #red-sample-init{
    position: absolute;
    width: 25px;
    height: 9px;
    opacity: 0;
    font-weight: bold;
    font-size: 0.9rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}




.yellow-sample, #yellow-sample-init {
    background-color: yellow;
    border: 2px solid rgb(165, 165, 27);
}
.blue-sample, #blue-sample-init{
    background-color: blue;
    border: 2px solid rgb(47, 60, 240);
}
.red-sample, #red-sample-init{
    background-color: red;
    border: 2px solid rgb(255, 73, 73);
}



.pontuacao {
    display: flex;
    color: white;
    h1{
        font-size:1.2rem
    }
    p {
        font-size: 1.1rem;
    }
    margin: 20px 0;
}

.virar {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #000000;
    overflow: hidden;
    z-index: 200;
    display: none;
    justify-content: center;
    align-items: center;
    color: white;
    img {
        width: 64px;
        margin:0 20px
    }

}

@media screen and  (min-width: 200px) and (max-width: 550px) {
    .virar {
        display: flex;
    }

    .arena {
        width: 100px;
        height: 50vh;
    }

}   