* {


    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif ;


}

body {

    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #e3f2fd;

}

.wrapper {

    width: 65vmin;
    height: 70vmin;
    display: flex;
    justify-content: center;
    overflow: hidden;
    flex-direction: column;
    border-radius: 5px;
    background: #293447;
}

.game-details {

    color: #b8c6dc;
    font-size: 1.2rem ;
    font-weight: 500;
    padding: 20px 27px;
    display: flex;
    justify-content: space-between;

}

.play-board {

   width: 100% ; 
   height: 100%;
   background: #212837;
   display: grid;
   grid-template: repeat(30, 1fr) /repeat(30, 1fr) ;


}

.play-board .food {

    background: #ff003d;
    border-radius: 50%;
}

.play-board .head {

    background: #60cbff;
    border-radius: 10%;
}

.footer {

    color: #b8c6dc;
    text-align: center;
    display: block;
    text-align: center;
    font-family: 'Times New Roman', Times, serif ;

}

/* Estilo para los controles */
.control {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem; /* Tamaño de los íconos */
    width: 30px; /* Ajusta el tamaño según tus preferencias */
    height: 30px; /* Ajusta el tamaño según tus preferencias */
    margin: 10px; /* Espacio entre botones */
    border: 2px solid #60cbff; /* Color del borde */
    border-radius: 50%; /* Forma redonda */
    background-color: #293447; /* Color de fondo */
    color: #60cbff; /* Color de los íconos */
    cursor: pointer;
    transition: all 0.3s; /* Transición suave para efectos */
}

/* Estilo para el contenedor de controles */
.controls-container {
    background: #293447;
    border-radius: 10%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    width: 100px; /* Ajusta el tamaño según tus preferencias */
    height: 100px; /* Ajusta el tamaño según tus preferencias */
    margin: 10px; /* Centra el contenedor */
}





