html {
    font-family: Arial, Helvetica, sans-serif;
}

body {
    width: 50%;
    max-width: 750px;
    min-width: 480px;
    margin: 0 auto;
}

h1 {
    background-color: #ff218c;
    color: #fff;
    text-align: center;
    width: 750px;
}

p {
    font-size: 20px;
    text-align: center;
}

#wrapper {
    box-sizing: border-box;
    text-align: center;
    font-size: 25px;
    color: #fff;
    width: 750px;
    height: 550px;
    background-color: #21b1ff;
}

#guessField {
    color: #000;
    width: 550px;
    height: 100px;
    font-size: 30px;
    border-style: none;
    margin-top: 25px;
    border: 5px solid #14727d;
    text-align: center;
}

#guess {
    font-size: 55px;
    margin-top: 120px;
    color: #fff;
}

#subm {
    background-color: yellow;
    color: #000;
    width: 350px;
    height: 50px;
    border-radius: 25px;
    font-size: 30px;
    border-style: none;
    margin-top: 50px;
}

button {
    background-color: purple;
    color: #fff;
    width: 250px;
    height: 50px;
    border-radius: 25px;
    font-size: 30px;
    border-style: none;
    margin-top: 30px;
}

.guesses {
    background-color: #12aab4;
    color: white;
    padding: 7px;
}

.lastResult {
    color: white;
    padding: 7px;
}

@media only screen and (max-width: 1280px) and (min-width: 360px) {
    body {
        display: block;
        justify-items: center;
        padding-right: 275px;
    }
}

