.mizButton {
    display: block;
    background-color: #ACD0EE; 
    color: black;
    width: 250px;
    height: auto;
    margin: 0 auto;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 8px;
    border: 1px solid #999;
    border-radius: 12px;
    box-shadow: 2px 2px 6px #c0c1c5;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 100%;
    font-weight: normal;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.mizButton:hover {
    background-color: #eee;
    color: black;
}
@media only screen and (max-width: 1000px) {
    .mizButton{
        width: 95%;
        padding-top: 15px;
        padding-bottom: 15px;
        font-size: 120%;
    }
}
