* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
}

/* Container */

.container {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 0 auto;
}

/* Header */

.header {
    width: 100%;
    background: rgb(180, 67, 33);
    color:white;
    padding: .7rem 0;
    margin-bottom: 2rem;
}

.header-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}
  
.header__title {
    font-size: 3.2rem;
    margin-bottom: .4rem;
}
  
.header__subtitle {
    /* color: #777; */
    font-size: 1.6rem;
    font-weight: 500;
}

img {
    width: 7%;
    height: 15%;
    margin-right: 1rem;
}

.instructions__info {
    width: 50%;
    text-align: center;
    margin-bottom: 2rem;
}

.guesses {
    font-weight: bold;
    font-size: 1.9rem;
    margin-bottom: 5rem;
}

body {
    background: #202020;
    color: white;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 1.6rem;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

span {
    border-bottom: 1px solid rgb(180, 67, 33);
    display: inline-block;
    font-size: 2rem;
    height: 2.4rem;
    line-height: 2.4rem;
    margin: 0 .1rem;
    text-align: center;
    text-transform: uppercase;
    width: 2.4rem;
}

.container_game {
    display: flex;
    align-items: center;
    flex-direction: column;
}

p {
    font-weight: 300;
    margin-bottom: .8rem;
}

.puzzle {
    display: flex;
    margin-bottom: 3rem;
}

.button {
    outline: none;
    background: rgb(180, 67, 33);
    border: none;
    border-bottom: 2px solid #85300f;
    border-radius: 7px;
    color: white;
    font-size: 1.7rem;
    font-weight: 300;
    padding: .7rem 1.5rem;
    margin: .5rem 0;
    transition: background .3s ease, color .3s ease;
}

.button:hover {
    background: #85300f;
    cursor: pointer;
}