*{
    margin: 0;
    font-family: 'Helvetica';
    text-align: center;
    color: #343c34 ;
    box-sizing: border-box;

}

header {
    display: grid;
    grid-template-areas: 'izquierda centro derecha';
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;    
    grid-gap: 35%;
    align-items: center;
    margin-bottom: 2%;

}

h1{
    margin-top: 2%;
    margin-bottom: 1.7%;
}

button{
    border-radius: 7px;
    border: 1px solid white;
    padding: 6%;
    padding-left: 12%;
    padding-right: 12%;
    transition: 2s;
}

article {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(7, 1fr);
    grid-gap: 0.5%;
    height: 70vh;
    margin-left: 2%;
    margin-right: 2%;
    grid-row-gap: 2%;
}

article div{
    border-radius: 7px;
    box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

article div:nth-child(1),
article div:nth-child(2),
article div:nth-child(3),
article div:nth-child(4),
article div:nth-child(5){
    background-color: #506cf4;
    color: white;
}

article div:nth-child(6),
article div:nth-child(7){
    background-color: #784cec;
    color: white;
}

article div:nth-child(8),
article div:nth-child(9),
article div:nth-child(10),
article div:nth-child(11),
article div:nth-child(12),
article div:nth-child(44),
article div:nth-child(45),
article div:nth-child(46),
article div:nth-child(47),
article div:nth-child(49),
article div:nth-child(48){
    background-color: #f1f1f1;
}

article div:nth-child(13),
article div:nth-child(20),
article div:nth-child(27),
article div:nth-child(34),
article div:nth-child(41),
article div:nth-child(14),
article div:nth-child(21),
article div:nth-child(28),
article div:nth-child(35),
article div:nth-child(42){
    background-color: #f8f4fc;
    color: #784cec;
}

html, body {
    height: 100vh;
    overflow-y: hidden;
}


article div:nth-child(32){
    background-color: #506cf4;
    color: white;
    box-shadow: 0px 0px 15px #506cf4;
}

.azul{
    background-color: #506cf4;
    width: 16%;
    height: 30px;
    border-radius: 5px;
    
}

.blanco{
    background-color: #f1f1f1;
    width: 16%;
    height: 30px;
    border-radius: 5px;
}

aside {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    margin-top: 2%;
    margin-right: 40%;
    margin-left: 40%;
    grid-gap: 0;
}

aside div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6%;
}

button:hover {
    transform: scale(1.4);
}