@media only screen and (min-width: 320px) {
    input[type=button] {
        border: 0px;
        width: 80%;
        height: 2em;
        margin-left: 10%;
        margin-right: 10%;
        font-size: 4em;
    }

    h1 {
        font-size: 5em;
    }
}

@media only screen and (min-width: 1281px) {
    input[type=button] {
        border: 0px;
        width: 80%;
        height: 1em;
        margin-left: 10%;
        margin-right: 10%;
        font-size: 3em;
    }

    h1 {
        font-size: 2em;
    }
}

html {
    background-color: rgb(153, 177, 255)
}

h1 {
    text-align: center;
    font-family: 'Francois One', sans-serif;
    color: rgb(7, 10, 168);
}

input[type=button] {
    background-color: rgba(68, 175, 207, 0.712);
}