*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: url("station.jpg") no-repeat center center/ cover;
    height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: bold;
    text-align: center;
    
}
h1{
    margin-top: 1em;
    font-size: 4rem;
}
h2{
    
    font-size: 11rem;
}
.buttons{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}
button{
    width: 75%;
    height: 8vh;
    margin: .3em;
    
    font-size: 2rem;
    font-weight: bold;
    color: white;
    border-radius: 10px;
    box-shadow: 0 0 5px rgb(67, 66, 66);
    cursor: pointer;
}
#increment-btn{
    background-color: green;
    transition: .5s;
}
#increment-btn:hover{
    color: green;
    background-color: rgb(19, 19, 19);
}
#save-btn{
    background-color: rgb(94, 3, 3);
    transition: .5s;
}
#save-btn:hover{
    color: red;
    background-color: rgb(19, 19, 19);
}

#save-el{
    margin-top: .3em;
    color: white;
    font-size: 2.4rem;
}

@media (min-width: 700px) {
    
    h1{
        margin-top: .5rem;
    }
    h2{
        font-size: 12rem;
    }
    .buttons{
        margin-top: 1em;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        
    }
    button{
        width: 25%;
        height: 10vh;
        margin: .1em;
        font-size: 2rem;
        font-weight: bold;
        color: white;
        border-radius: 15px;
        box-shadow: 0 0 5px rgb(67, 66, 66);
    }
    #save-el{
        margin-top: 1em;
        color: white;
        font-size: 2.3rem;
    }
}