* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header{
    width: 100%;
    background-color: aqua;
    display: flex;
    justify-content: center;
}


.container {
    width: 100%;
    max-width: 1680px;
    height: 525px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 auto;
    
}

.box {
    width: 33.3%;
    height: 100%;
    border: black 1px solid;
    display: flex;
    flex-direction: column; 
    align-items: center; 
    position: relative; 
}

.ctn{
    display: inline-block;
    justify-content: center;
}

.contador{
   position: absolute;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: auto; 
    margin: 0; 
    
}

.contador button{
    width: 100px;
    height: 50px;
}


.lampada{
    position: absolute;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    display: inline-block;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: auto; 
    margin: 0; 
}

.ppt{
    position: absolute;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    display: inline-block;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: auto; 
    margin: 0; 
}


.box img {
    max-width: 90%;
    max-height: 90%;
    margin: auto;
}

div > button{
    width: 100%;
}

.contador{
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 16px;
    width: 50%;

}

.align{
    display: flex;
}

.player-options, .enemy-options{
    width: 200px;
}
 .box .player-options img,
 .enemy-options img{
    max-width: 50px;
    opacity: 0.3;
    cursor: pointer;
    
}





@media screen and (max-width: 1200px){
    .box{
        width: 100%;
    }
}