body { 
    font-family: 'Pirata', cursive; /* Use uma fonte que lembre piratas */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #fff;
    text-align: center;
    position: relative;
    font-size: 20px;
    cursor: none;
 }

#score {
    position: absolute;
    top: 10px;
    right: 30px;
    width: auto;
    text-align: right;
    z-index: 100;
    user-select: none;
}

#timer {
    position: absolute;
    top: 10px;
    text-align: center;
    z-index: 100;
    user-select: none;
}

#background-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40%;
    height: 80%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: none;
}

#caveira{
    width: 25%;
}

#score-container {  
    padding: 20px;
    text-align: center;
    position: absolute; 
    z-index: 1;
    display: none;
}

h1 {
    font-size: 36px;
    margin: 0px;
}

p {
    font-size: 24px;
}

.score {
    font-size: 48px;
    margin: 20px 0;
}

button {
    background-color: #ff9900;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 20px;
    cursor: pointer;
}

button:hover {
    background-color: #cc7700;
}