body {
    background-color: #0d0d0d;
    color: white;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

#greeting {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

#greeting .alert {
    max-width: 600px;
    width: 90%;
}

#greeting button {
    margin-top: 20px;
}

#notify {
    position: absolute;
    top: 20px;
    right: 20px;
    font-weight: bold;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

#notify img {
    height: 30px;
}

#gameArea {
    display: none;
    width: 100%;
    max-width: 800px;
    text-align: center;
    margin: auto;
    flex-direction: column;
}

#images {
    height: 440px;
    width: 100%;
    background-size: cover;
    background-position: center;
    margin-bottom: 1em;
    border-radius: 10px;
    border-color: white;
    border-style: solid;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

#text {
    margin-bottom: 1em;
    font-size: 1.2em;
    line-height: 1.5;
    background-color: rgb(0, 0, 0);
    border-radius: 10px;
    border-style: solid;
    border-color: whitesmoke;
    padding: 10px;
}

#controls {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

button.btn {
    min-width: 120px;
}

.player {
    font-weight: bold;
    color: #fffd01;
    font-size: 1.2em;
}

.changeBackground {
    color: white;
    background-color: #111111;
}

.btn-primary {
    background-color: rgb(197, 197, 197);
    color: #111111;
    border: white;
}
.btn-primary:hover {
    background-color: rgba(0, 0, 0, 0.909);
    color: white;
    border-style: solid;
    border-color: white;
}

.alert {
    color: white;
}