*, *::after, *::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, Helvetica, sans-serif;
    height: 100vh;
    background-color: blanchedalmond;
    display: flex;
    justify-content: center;
    align-items: center;
}
div.contenedorDado1 {
    width: 300px;
    height: 300px;
    background-color: whitesmoke;
    border: solid 2px black;
    border-radius: 5%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
div.contenedorDado1 div.punto {
 width: 70px;
 height: 70px;
 background-color: black;
 border-radius: 50%;
 margin: 30px 0;
}

/* Dado 1 */
div.contenedorDado1 .punto {
    visibility: hidden;
}
