/* Center the button both vertically and horizontally using flexbox */
body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

html {
    background: linear-gradient(45deg, #00293a, #00121a);
}

/* Style for the round, green, large play button */
.green-play-button {
    background-color: #1a642b;
    color: white;
    border: none;
    border-radius: 15px;
    width: fit-content;
    height: 70px;
    font-size: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 16px rgba(40, 167, 69, 0.2);
    cursor: url('/ponter.png'), pointer;
    transition: background 0.5s, box-shadow 0.2s;
}

.green-play-button:hover {
    background-color: #0c3114;
    box-shadow: 0 6px 24px rgba(40, 167, 69, 0.3);
}

/* Optional: Remove outline on focus for better appearance */
.green-play-button:focus {
    outline: none;
}