* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    text-align: center;
    height: 100vh;
}

header {
    background-color: #161616;
    height: 40px;
}

header ul {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

header ul li {
    padding: 5px 20px;
    list-style: none;
}

header ul li a {
    text-decoration: none;
    text-transform: capitalize;
    color: #fff;
    transition: 0.5s ease;
}

header ul li a:hover {
    color: #787C7E;
}

header ul li img {
    height: 38px;
}

.container {
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
}

.container img {
    width: auto;
    height: 520px;
    user-select: none;
}

#board {
    width: 350px;
    height: 400px;
    margin: auto;
    margin-top: 3px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.tile {
    /* Box */
    border: 2px solid lightgray;
    width: 60px;
    height: 60px;
    margin: 2.5px;

    /* Text */
    color: black;
    font-size: 36px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}

.correct {
    background-color: #6AAA64;
    color: white;
    border-color: white;
}

.present {
    background-color: #C9B458;
    color: white;
    border-color: white;
}

.absent {
    background-color: #787C7E;
    color: white;
    border-color:white;
}




.hide {
    display: none;
}

.keyboard-row {
    width: 400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.key-tile {
    width: 36px;
    height: 40px;
    margin: 1px;
    border: 1px solid lightgray;

    /* Text */
    font-size: 20px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}

.enter-key-tile {
    width: 76px;
    height: 40px;
    margin: 1px;
    border: 1px solid lightgray;

    /* Text */
    font-size: 20px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 700px) {

}