body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Cinzel', sans-serif;
}

body {
    background-color: #050506;
    overflow-x: hidden;
}

#bg-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: block;
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    width: 90%;
    max-width: 600px;
    z-index: 1;
}

.logo {
    max-width: 128px;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.tagline {
    font-size: 18px;
    line-height: 1.5;
    margin: 10px 0 0 0;
    padding: 0;
    color: #ccc;
}

.jam-entry {
    margin-top: 30px;
}

.jam-entry .jam-label {
    font-size: 16px;
    margin: 0 0 12px 0;
    padding: 0;
    color: #ccc;
}

.jam-entry iframe {
    max-width: 100%;
}

.social-buttons {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0; /* Add some padding at the bottom */
    z-index: 1;
}

.social-buttons .btn {
    text-decoration: none;
    color: #FFF; /* Icon color */
    background-color: transparent; /* Makes the background transparent */
    padding: 10px;
    margin: 5px;
    border-radius: 50%; /* Creates a circular shape */
    display: inline-block;
    transition: transform 0.3s, color 0.3s;
}

.social-buttons .btn:hover {
    transform: scale(1.1); /* Slightly enlarges the icon on hover */
    color: #ccc; /* Changes icon color on hover */
}

/* Icon sizes */
.social-buttons .btn i {
    font-size: 24px; /* Adjust icon size */
}

.twitter {
    background-color: #1DA1F2;
}

.facebook {
    background-color: #4267B2;
}

.instagram {
    background-color: #E1306C;
}

.social-buttons .btn:hover {
    opacity: 0.9;
}

@media screen and (max-width: 800px) {
    h2 {
        font-size: 30;
        margin: 0 0 20px 0;
    }

    p {
        font-size: 25;
        margin: 0;
        padding: 0;
    }

    .tagline {
    font-size: 14px;
    }
}

@media screen and (min-width: 801px) {
    h2 {
        font-size: 50px; /* Adjusted size */
        margin: 0 0 20px 0;
    }

    p {
        font-size: 40px;
        margin: 0;
        padding: 0;
    }

    .tagline {
    font-size: 18px;
    }
}


