/*  Pour reset les marges*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@keyframes appear {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }

}

body {
    text-align: center;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(./image/station.jpg);

}

h1 {
    margin-top: 10px;
    margin-bottom: 30px;
}

h2 {
    font-size: 50px;
    margin-top: 0;
    margin-bottom: 20px;
}

#increment-btn {
    background: cyan;
    color: white;
    border-radius: 8px;
    width: 140px;
    padding: 5px;
    margin: 5px;
    cursor: pointer;
    animation: appear 1s;
}

#save-btn {
    background: cornflowerblue;
    color: white;
    border-radius: 8px;
    width: 140px;
    padding: 5px;
    margin: 5px;
    cursor: pointer;
    animation: appear 1s;
}

p {
    padding-top: 20px;
    margin-top: 40px;
    padding-bottom: 60px;
    font-size: 1.4em;
}

#reset-btn {
    background: cornflowerblue;
    color: white;
    border-radius: 8px;
    width: 140px;
    padding: 5px;
    margin: 5px;
    cursor: pointer;
    margin-bottom: 100px;
    margin-top: 140px;
    animation: appear 1s;
}

.site {
    text-decoration: none;
    margin: 20px;
    color: black;
    display: block;
}

.site:hover {
    font-weight: lighter;
}

/*///////////////////////////////////////////////RESPONSIVE/////////////////*/

@media only screen and (max-width: 1196px) {
    body {
        background-repeat: no-repeat;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    body {
        background-repeat: no-repeat;
    }
}

@media (min-width: 0px) and (max-width: 768px) {

    h1,
    h2 {
        margin-bottom: 20px;
    }

    p {
        padding-bottom: 30px;
        background: radial-gradient(white, cyan);
    }

    body {

        background-size: cover;

    }

    #reset-btn {
        margin-top: 80px;
    }


}