.button {
display: inline-block;
background-color: #333333;
border-radius: 10px;
border: 4px double #cccccc;
color: #FFFFFF;
text-align: center;
font-size: 28px;
padding: 20px;
width: 200px;
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
-o-transistion: all 0.5s;
transition: all 0.5s;
curser: pointer;
margin: 5px;
}

.button:hover {
background-color: #f7ef38;
color: #333333;
}

.button1 {

display: inline-block;
background-color: #ff0000;
border-radius: 10px;
border: 4px double #cccccc;
color: #ffffff;
text-align: center;
font-size: 28px;
padding: 20px;
width: 40;
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
-o-transistion: all 0.5s;
transistion: all 0.5s;
curser: pointer;
margin: 5px;
}

.button1:hover {

background-color: #66ff00;
color: #FFFFFF;
}
