body{
    background-color: #261383;
}
h1{
    text-align: center;
    font-size: 3rem;
    font-family: Arial, Helvetica, sans-serif;
    color: #7866ff;
    text-shadow: 3px 3px 5px #c5a1f7;
    cursor:default;
}
h1:hover{
    color: #fff6ff;
}
.container{
    display:grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: repeat(3,0fr);
    margin:0;
    grid-template-rows: repeat(3,0fr);
    background-color: transparent;
}
.caseta{
    cursor:pointer;
    border:5px solid #F7E7A1;
    height: 100px;
    display:grid;
    justify-content: center;
    align-items: center;
    font-size:4rem;
    width:100px;
    background-color: #1f1170;
    box-shadow: 1px 5px 5px 5px #9183fb;
}
p{
    text-align:center;
    font-size: 2.5rem;
    margin:0px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: bold;
    font-style: italic;
}
button{
    cursor:pointer;
    font-size:2rem;
    padding:15px;
    border-radius:20px;
    border:none;
    background-color: #7866ff;
    color:white;
    font-family:Arial, Helvetica, sans-serif;
}
button:hover{
    background-color: #9183fb;
    color:#1f1170;
}
button:active{
    background-color: #ada3f8;

}
.reset{
    display: flex;
    justify-content: center;
    height:15vh;
    align-items: center;
}