html {
    box-sizing: border-box;

    /* background */
    background: #8E2DE2;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #4A00E0, #8E2DE2);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #4A00E0, #8E2DE2); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  }
  *, *:before, *:after {
    box-sizing: inherit;

  }

.content-wrap {
    font-family: 'K2D', sans-serif;
    text-align: center;
    letter-spacing: .2rem;
    margin: auto;
    margin-top: 10%;
    color: whitesmoke;
    
}

h1 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: .5rem;
}

h3 {
    font-family: 'Montserrat';
    text-transform: uppercase;
    /* letter-spacing: .25rem; */
}

#message {
    padding-top: 10px;
}

#hint {
    padding-top: 25px;
}

.hr {
    width: 50px;
    margin: auto;
    margin-top: 40px;
    margin-bottom: 40px;
    border: 1px solid grey;
}

.guessbox {
    font-family: 'Arapey', serif;
    font-size: 1.4rem;

    display: inline-block;
    /* position: relative; */
    width: 50px;
    height: 50px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 10px;
    border: 1px solid whitesmoke;
    border-radius: 3px;
    text-align: center;
}

.resetti {
    margin-top: 20px;
}

button {
    /* padding: 5px; */
    border-radius: 2px;
    border: none;
    /* background: aquamarine; */
}