body {
    font-family: Arial, sans-serif;
    background-image: url('https://png.pngtree.com/background/20230621/original/pngtree-dark-marble-background-with-illuminated-3d-slot-machines-chips-and-dice-picture-image_3894924.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    backdrop-filter: blur(8px);
    overflow-y: scroll;
    position: relative;
}

#header {
    color: #85BB65;
    margin-bottom: 10px;
    text-shadow: 6px 6px 4px rgba(0, 0, 0, 0.7);
    text-position: center;
}

nav {
    position: sticky; top:
}

#casino-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.casino-button {
    flex: 0 0 calc(25% - 20px); /* Four columns with 20px margin on each side */
    margin: 10px;
    text-align: center;
    shadow: 6px 6px 8px #458F6B;
    text-decoration: none;
    color: #f6f4f4; /* Set text color to white for better visibility on the background */
}

.casino-image {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    margin-bottom: 5px;
    border: 3px solid #9B65BA;
    box-shadow: 6px 6px 4px rgba(0, 0, 0, 0.7);
}

.casino-button p {
    text-shadow: 6px 6px 3px rgba(0, 0, 0, 0.7);
}

#customer-support {
    position: fixed;
    bottom: -1020px;
    left: 10px;
    margin: 10px;
    text-align: left;
    color: gold;
}

#customer-support img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px
}

#customer-support p {
    margin-top: 5px;
}

footer {
    position: fixed;
    bottom: -1200px;
    width: 100%;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
}
