html, body {
    margin: 0;
    padding: 0;
    background: #faf8ef;
    font-family: 'Raleway', sans-serif, Arial;
    font-size: 16px;
}

.container {
    display: flex;
    margin: 20px;
}

#gameInfo {
    width: 25%;
    margin-top: 50vh;
    height: 100%;
    line-height: 1.5;
    font-size: 20px;
    margin-bottom: 0;
}

#socialMedia {
    width: 25%;
    margin: 25px 0;
    height: 100%;
}

#socialMedia div{
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    width: 100%;
}

#socialMedia a {
    font-size: 80px;
    text-decoration: none;
    width: 100%;
}

#socialMedia i {
    margin: 60px auto;
    text-align: center;
    cursor: pointer;
    display: block;
}

.fa-github {
    color: #000;
}

.fa-linkedin-in {
    color: #9D61CB;
}

#usersResults div{
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    width: 100%;
}

#game {
    width: 50%;
    text-align: center;
    justify-content: center;
}

#scoreBoard {
    position: relative;
    width: 70vh;
    display: inline-block;
}

#boardContainer {
    margin: 20px 0;
    height: 80%;
    display: inline-block;
    width: 80%;
}

#gameBoard {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, auto);
    grid-gap: 30px;
    grid-auto-rows: 25%;
    grid-auto-columns: 25%;
}

.restart{
    position: absolute;
    font-size: 25px;
    color: #707070;
    cursor: pointer;
    right: 0;
    margin: 5px 0;
}

.score {
    font-size: 30px;
    text-align: center;
}

.game-over {
    width: 50%;
    height: 80%;
    position: absolute;
    background: rgba(1,1,1,0.5);
    left: 26%;
    border-radius: 10px;
    transition: 3s;
}

.game-over .lost {
    width: 100%;
    text-align: center;
    font-size: 50px;
    margin-top: 12vh;
    color: #ccc;
}

.game-over .score {
    width: 100%;
    margin-top: 12vh;
    text-align: center;
    font-size: 50px;
    color: #ccc;
}

.game-over .try-again {
    margin-top: 12vh;
    font-size: 50px;
    color: #fff;
    text-align: center;
    cursor: pointer;
}
