#pop__up__window__parent, .pop__up__window__parent {
    height: 18rem;
    width: 26rem;
    min-width: 367px;
    position: absolute;
    z-index: 999;
    text-align: center;
    background-color: red;
    margin: auto;
    top: 36vh;
    left: 50vw;
    border-style: solid;
    border-width: 5px;
    border-color: #c7c7c7;
    border-radius: 20px;
    background-color: #1C1C1C;
    display: none;
    transform: translate(-50%, -50%);
}

#game__over__button, #game__won__button {
    padding: 20px 40px;
    background-color: #3f3f3f;
    text-align: center;
    color: #b6b6b6;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 2rem;
    border-style: solid;
    border-width: 2px;
    border-radius: 10px;
    border-color: #c7c7c7;

    position: relative;
    top: 100px;
}

#game__over__button:hover {
    cursor: pointer;
    background-color: #1C1C1C;
}

#game__over__text, #game__won__text {
    background: linear-gradient(90deg, yellow, blue, red, cyan, green, purple, orange);
    margin: auto;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 4rem;
    text-align: center;
    position: relative;
    top: 60px;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}