html,
body {
    padding: 0;
    margin: 0;
    font-family: sans-serif;
    height: 100%;
    width: 100%;
    background: #1f1f1f;
    display: flex;
    align-items: center;
    flex-direction: column;
    color: #ffcd00;

}

#iniciar {
    background-color: #ffcd00;
    color: #1f1f1f;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px 50px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

#iniciar:hover {
    transform: scale(1.1);
    background-color: #1f1f1f;
    border: 2px solid #ffcd00;
    color: #ffcd00;

}

p {
    color: #f1f1f1;
    margin: 0;
    margin-bottom: 15px;

}

p img {
    vertical-align: middle;
    width: 25px;
    height: 25px;
    margin: 0 5px;
}


#canvas {
    width: 95%;
    height: 91%;
    background-image: url("./imagens/Background.png");
    border: 2px solid #1f1f1f;
    border-radius: 2px;
    margin-top: 5px;
}

.game {
    width: 820px;
    height: 660px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #333;
    padding-top: 5px;
    border: 2px solid #f1f1f1;
    border-radius: 2px;
    margin-top: 5px;
}

.info {
    width: 800px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: #ffcd00;
    font-size: 25px;
}

#tempoJogo,
#score {
    padding: 2px;
    font-weight: bold;
    border-radius: 2px;
}


.aa {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: flex-end;
    padding-right: 80px;
}

a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-align: center;
    padding: 5px;
    width: 80px;
    height: 40px;
    background-color: #1f1f1f;
    border: #f1f1f1 solid 2px;
    border-radius: 5px;
    color: #f1f1f1;
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
}

a:hover {
    transform: scale(1.1);
}