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

.container {
    background-color: rgb(255, 255, 255);
    height: 100vh;
    display: flex; /*de qué manera ordenamos las cosas*/
    flex-direction: column;
    padding: 20px;
    font-size: 60px; /*tamaño de letra*/
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    justify-content: center;
    align-items: center;
}

.container div
{
    background-color: rgb(0, 0, 0);
}

.squareA {
    background-color: black;
    width: 500px;
    height: 500px;
    display: grid; /*Hacer una grilla*/
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 7px; /*Espaciado en el contenedor*/
}

.squareA div {
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.squareA div:hover {
    background-color: pink;
    cursor: pointer;
}

button {
    padding: 25px 15px;
    background-color: palevioletred;
    color: white;
    outline: none;
    border: 0px;
    border-radius: 9px;
    width: 200px;
    margin-top: 50px;
    font-weight: bold;
    font-size: 19px;
    letter-spacing: 1px;
}

button:hover {
    background-color: rgba(216, 112, 147, 0.704);
    cursor: pointer;
}

.containerB {
    background-color: palevioletred;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 140px;
    font-size: 20px;
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.containerB h1 {
    margin: 10px;
}
.containerB p {
    margin: 10px;
}