* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

body {
    overflow: hidden;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    background-color: #666666;
}

.game {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/*! top */
.top {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #818181;
    height: 550px;
    width: 900px;
    position: relative;
    border-radius: 150px;
    border: 4px solid #535353;
    box-shadow: 0 0 30px #464646;
}

.table-container {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 300px;
}

.table {
    width: 5px;
    background-color: white;
}

.table-bottom {
    position: absolute;
    bottom: 100px;
    width: 150px;
    height: 5px;
    left: 50%;
}

.table-body {
    position: absolute;
    bottom: 100px;
    height: 350px;
    left: 50%;
    margin-left: 75px;
}

.table-top {
    position: absolute;
    width: 100px;
    height: 5px;
    bottom: 450px;
    left: 50%;
    margin-left: 75px;
}

.table-roop {
    position: absolute;
    bottom: 400px;
    height: 50px;
    left: 50%;
    margin-left: 170px;
}

.human-head {
    position: absolute;
    height: 70px;
    width: 70px;
    border-radius: 100%;
    border: 5px solid white;
    bottom: 330px;
    left: 50%;
    margin-left: 137.5px;
}

.human-body {
    height: 80px;
    width: 5px;
    background-color: white;
    position: absolute;
    bottom: 250px;
    left: 50%;
    margin-left: 170px;
}

.human-arm1 {
    position: absolute;
    height: 40px;
    width: 5px;
    background-color: white;
    transform: rotate(45deg);
    bottom: 280px;
    left: 50%;
    margin-left: 155px;
}

.human-arm2 {
    position: absolute;
    height: 40px;
    width: 5px;
    background-color: white;
    transform: rotate(-45deg);
    bottom: 280px;
    left: 50%;
    margin-left: 185px;
}

.human-leg1 {
    position: absolute;
    bottom: 218px;
    height: 40px;
    width: 5px;
    background-color: white;
    transform: rotate(45deg);
    left: 50%;
    margin-left: 155px;
}

.human-leg2 {
    position: absolute;
    bottom: 218px;
    height: 40px;
    width: 5px;
    background-color: white;
    transform: rotate(-45deg);
    left: 50%;
    margin-left: 185px;
}

.wrong-letter-container {
    background-color: white;
    height: 200px;
    width: 200px;
    position: absolute;
    right: 180px;
    border-radius: 20px;
    padding: 15px;
    border: 4px solid #666666;
    box-shadow: 0 0 10px #555555;
    color: #464646;
}

.wrong-letter-header {
    font-size: 25px;
    text-align: center;
    font-weight: 400;
    margin-bottom: 10px;
}

.wrong-letter {
    font-size: 22px;
    color: #4b4b4b;
}

/*! bottom */
.bottom {
    background-color: white;
    border-radius: 20px;
    height: 80px;
    width: 550px;
    margin-top: 20px;
    box-shadow: 0 0 30px #464646;
}

.letter-box {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
}

.letter {
    font-size: 50px;
    border-bottom: 3px solid #969696;
    height: 70px;
    width: 35px;
    color: #4b4b4b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.display {
    display: none;
}

.popup-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    background-color: rgba(41, 41, 41, 0.6);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.popup {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #dfdfdf;
    height: 300px;
    width: 500px;
    border-radius: 60px;
    gap: 30px;
}

.popup-header {
    font-size: 100px;
    color: #e22f2f;
}

.popup-btn {
    height: 60px;
    width: 250px;
    border-radius: 20px;
    border: 3px solid #b4b4b4;
    background-color: #cfcfcf;
    font-size: 30px;
    color: #646464;
}

.popup-btn:hover {
    background-color: #b4b4b4;
}