h1{
    font-size: 2rem;
    font-weight: 900;
    color: #23674e;
}
.btn{
    border: 1px solid #ccc;
    width: 200px;
    height: 50px;
    color: #ccc;
    font-weight: 400;
    text-align: center;
    line-height: 48px;
    box-sizing: border-box;
    font-size: 0.9rem;
    transition: 0.3s;
}
.btn:hover{
    background-color: #7bbf78;
    border-color: #7bbf78;
    color: #fff;
}
@media screen and (max-width:1400px) {
    .btn{
        width: 150px;
        height: 40px;
        line-height: 38px;
    }
}