body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f4f4;
    text-align: center;
    margin: 0;
    padding: 40px;
}
#home {
    position: fixed;
    top: 25px;
    left: 25px;
    height: 75px;
    width: 75px;
    border-radius: 100%;
    border: 3px solid #3A3A3A;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.85);
    color: #2c3e50;
    cursor: pointer;
    opacity: 0.9;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}
#home:hover {
    transition: 0.3s ease;
    transform: scale(1.05);
    opacity: 1;
    background-color: rgba(255, 255, 255, 1);
}
#home svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

h1 {
    font-size: 32px;
    margin-bottom: 40px;
}

.game-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

.image-container img {
    width: 350px;
    border-radius: 10px;
    border: 3px solid #ccc;
}

.names-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.name {
    padding: 15px 25px;
    font-size: 22px;
    background-color: #2c3e50;
    color: white;
    border-radius: 8px;
    cursor: grab;
}

.name:hover {
    background-color: #34495e;
}

#message {
    font-size: 26px;
    margin-top: 40px;
    font-weight: bold;
}

.correct {
    color: green;
}

.incorrect {
    color: red;
}

.hidden {
    display: none;
}

button {
    padding: 15px 30px;
    font-size: 20px;
    border: none;
    border-radius: 8px;
    background-color: #2c3e50;
    color: white;
    cursor: pointer;
}