body{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    background-color: #c1440e;
    background-image: url(./img/fullImage.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

h1{
    margin: 20px 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 52px;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: center;
    color: #ffd400;
    text-shadow:
        -2px -2px 0 #c22307,
        2px -2px 0 #c22307,
        -2px 2px 0 #c22307,
        2px 2px 0 #c22307,
        0 2px 0 #c22307,
        0 -2px 0 #c22307,
        2px 0 0 #c22307,
        -2px 0 0 #c22307,
        0 6px 10px rgba(0, 0, 0, 0.5);
}

canvas{
    background-color: black;
    border-radius: 50px;
    display: block;
}

#game-container{
    position: relative;
    width: 1000px;
    max-width: 100%;
}

.overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 50px;
}

.overlay button{
    padding: 18px 48px;
    font-size: 28px;
    font-weight: bold;
    color: white;
    background: linear-gradient(180deg, #ff8c1a, #e04e1a);
    border: 3px solid white;
    border-radius: 16px;
    cursor: pointer;
}

.overlay button:hover{
    filter: brightness(1.1);
}

.icon-button{
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 2;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    color: #5c1a00;
    background: linear-gradient(180deg, #ffe066, #ffb703);
    border: 3px solid #5c1a00;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.icon-button:hover{
    filter: brightness(1.1);
}

#pause-button{
    right: 20px;
}

#mute-button{
    right: 78px;
}
