body {
    font-family: 'Cinzel', serif;
    margin: 0;
    background-image: url('https://i.pinimg.com/564x/a9/3f/66/a93f6644e20c5b74bfd0203698e0c656.jpg');
    background-size: cover;
    /* Ensures both images cover the background */
    background-position: contain;
    /* Centers both images */
    background-repeat: no-repeat;
    /* Prevents repeating the images */
    background-blend-mode: overlay;
    /* Blends the images together with overlay mode */
    background-color: rgba(0, 0, 0, 0.79);
    /* Optional: adds a slight dark overlay to enhance text readability */
}

nav {
    background-color: #1c273c;
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    color: white;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar {
    /*             background-color: #1c273c; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.navbar-item {
    color: #FFFFFF;
    font-family: 'Cinzel', serif;
    font-size: 18px;
    margin: 0 15px;
    text-decoration: none;
}

#logo {
    color: #ffffff;
    font-size: 24px;
    text-decoration: none;
    font-weight: bold;
}

.navbar-links a {
    color: #FFFFFF;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
}

.navbar-links a:hover {
    text-decoration: underline;
}

.container {
    position: relative;
    margin-top: 60px;
    /* Adjust based on navbar height */
}

#canvas {
    display: block;
    margin: 50px auto;
    cursor: pointer;
}

#center-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    background-color: #0505ab;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 650;
    text-align: center;
}

#message-box {
    position: absolute;
    background: linear-gradient(rgba(255, 165, 0, 0.7), rgba(0, 128, 0, 0.7));
    /* Gradient from Orange to Green */
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    display: none;
    pointer-events: none;
    max-width: 300px;
    z-index: 20;
}

#message-box strong {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

#message-box span {
    font-size: 12px;
}