body{
    background-color: deepskyblue;
}
hl{
    color:cornflowerblue;
}

button{
    font-size: 25px;
    color: cyan;
    background-color: blue;
    border: 2px darkblue solid;
    border-radius: 20px;
}

button:hover{
    font-size: 25px;
    color: cyan;
    background-color: blue;
    border: 2px darkblue dotted;
    border-radius: 20px;
}

label{
    margin: 20px;
    padding: 25;
    font-size: 20px;
    text-align: center;
    border-radius: 20px;
}

div{
    border-radius: 30px;
    border-style: solid;
    border-color: black;
    display: grid;
    justify-content: center;
}