/* border-radius, box-shadow */

.button1 {
    font-size: 40px;
    font-family: 'Comic Sans MS';
    border-radius: 1em;
    border: 0;
    color: white;
    background-color: green;
    padding-left: 2em;
    padding-right: 2em;
}

.button2 {
    font-size: 40px;
    font-family: 'Comic Sans MS';
    border-top-left-radius: 1em;
    border-bottom-right-radius: 1em;
    border-color: #0305cc;
    color: #0305cc;
    background-color: white;
    padding-left: 2em;
    padding-right: 2em;
    box-shadow: 20px 10px 5px 1px green; 
}

.button3 {
    font-size: 40px;
    font-family: 'Comic Sans MS';
    border-radius: 1em;
    border: 0;
    color: green;
    background-color: #feda02;
    padding-left: 2em;
    padding-right: 2em;
    box-shadow: 20px 10px 5px 1px red; 
}

.button4 {
    font-size: 40px;
    font-family: 'Comic Sans MS';
    border-bottom-right-radius: 1em;
    border: 0;
    color: #a4229e;
    background-color: #7cff03;
    padding-left: 2em;
    padding-right: 2em;
    box-shadow: 20px 10px 5px 1px red; 
}


.titles{
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    display: inline-block;

}

.titles title{   
    color: blue; 
}

.titles .subtitle{
    color:red;
}

.titles .text{
    color:green;
    
}