body {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
background-color: rgb(255, 223, 228);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.block {
    display: flex;
    justify-content: center;
    padding-top: 1vw;
}

.panel {
    background-color: rgba(255, 223, 186, 0.9);

    border: #ccc 1px solid;
    box-shadow: #000 0px 0px 5px;
    border-radius: 10px;
    padding: 2vw;
 
}

.botones{
    display:grid;
    grid-template-columns: auto auto auto auto;
    margin-top: 20px;
    background-color: rgba(70, 147, 129, 0.9);
    border: #ccc 1px solid;
    box-shadow: #000 0px 0px 5px;
    border-radius: 10px;
    

}

.botones > div:hover {
    background-color: #24785e;
}

.botones > div {
    margin: 10px;
    text-align: center;
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 20px;
    /* border: 2px solid rgb(255, 30, 143);*/
    box-shadow: 0px 0px 6px #ffe348;
    background-color: #c2d096;
    border-radius: 40px;
}


.display{
    background-color: rgba(138, 202, 187, 0.9);
    padding: 1vw 2vw;
    border: #ccc 1px solid;
    box-shadow: #000 0px 0px 5px;
    border-radius: 10px;

}
