.pieza {
    height: 200px;
    margin: 0px;
}
.container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border: 1px solid gray;
    
}
#tablero{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
}

.colocar{
    height: 200px;
    width: 200px;
    border: solid 1px black;
    box-sizing: border-box;

}

#fin{
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(img/pinguino.jpg);
    width: fit-content;
    height: fit-content;
}

#inicio{
    align-items: center;
    justify-items: center;
    width: 800px;
    height: 600px;
}
h1{
    margin: 0;
}

svg{
    width: 50px;
}

.navbar{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 50px;
}

.navbar a{
    position: absolute;
    left: 10px;
}

.info img{
    width: 250px;
}

body{
    padding: 10px;
}