h2{
    color:green;
font-size: 35px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-align: center;
    
}

button{
    color: #2196f3;
    padding: 10px 20px;
    border: none;
    transition: background 0.3s ease,
    transform 0.3s ease;
    background-color: white;

}
button:hover{
    color: white;
    background: #1769aa;
    transform: scale(1.1);

}



