/*FONT STYLES IMPROTING*/
@import url('https://fonts.googleapis.com/css?family=Press+Start+2P&display=swap');
/*Default settings*/

* {
    padding: 0;
    margin: 0;
    box-sizing: inherit;
}

html {
    font-size: 62.5%;
    box-sizing: border-box;
}

body {
    background-color: #222;
    color: #eee;
    overflow: hidden;
    font-family: 'Press Start 2P', sans-serif;
}

/* LAYOUT */

header {
    position: relative;
    height: 35vh;
    border-bottom: 7px solid black;
}

main {
    height: 65vh;
    color: #eee;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.left {
    flex-direction: column;
    width: 52rem;
    align-items: center;
    display: flex;
}

.right {
    font-size: 2rem;
    width: 52rem;
}


/* ELEMENTS */

h1 {
    position: absolute;
    text-align: center;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.number {
    width: 15rem;
    background-color: #222;
    border: 7px solid black;
    position: absolute;
    left: 50%;
    bottom: 0px;
    transform: translate(-50%, 50%);
    padding: 3rem 0rem;
    text-align: center;
    font-size: 40px;
}

.info {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1.4rem;
}

.playAgain {
    position: absolute;
    top: 2rem;
    left: 2rem;
}

.btn {
    padding: 2rem 3rem;
    font-family: inherit;
    background-color: #222;
    font-size: 2rem;
    color: #eee;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #ccc;
}

.inputField {
    background: none;
    color: inherit;
    font-family: inherit;
    font-size: 5rem;
    padding: 2.5rem;
    width: 25rem;
    text-align: center;
    display: block;
    margin-bottom: 3rem;
    border: 3px solid black;
}

.check {
    border: 3px solid black;
}

.textG {
    margin-bottom: 3rem;
}

.score {
    margin-bottom: 3rem;
}