.button_T {
    background-color: #00B0F0; /* Green */
    border: none;
    color: white;
	width: 220px;	height: 60px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    margin: 4px 2px;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    cursor: pointer;
}
.button_T1 {
    background-color: 00B0F0; 
    color: white; 
    border: 2px solid #00B0F0;
}
.button_T1:hover {
    background-color: #00B0F0;
    color: white;
}
.button_T2 {
    background-color: white; 
    color: black; 
    border: 2px solid #00B0F0;
}
.button_T2:hover {
    background-color: #00B0F0;
    color: white;
}
