/* General styles */
body, html {
    height: 100%;
    overflow-x: hidden; /* Prevent horizontal scroll bar */
    margin: 0;
    font-family: Arial, sans-serif;
}

body {
    background: url('public/background.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    min-height: 100vh;
}

.content {
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;
    border-radius: 10px;
    margin: 20px;
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
}

/* Navigation styles */
nav {
    background: rgba(0, 0, 0, 1);
    height: 60px;
    padding: auto;
    margin-bottom: 20px;
    align-items: center;
    display: flex;
    justify-content: center;
    text-align: center;
}

nav a {
    color: #ffffff; /* Bright color for better contrast */
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    font-size: 1.2em;
    transition: color 0.3s ease, transform 0.3s ease;
}

nav a:hover {
    color: #ffffff; /* Change to white on hover */
    transform: scale(1.1); /* Slightly enlarge the text on hover for better effect */
}

/* Navigation Container for better layout */
#nav-placeholder {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
}


h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 1.5em;
    margin-bottom: 1.5em;
}

.play-button {
    display: inline-block;
    font-size: 1.5em;
    padding: 15px 30px;
    border: 3px solid white;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.play-button:hover {
    background: white;
    color: black;
}


/* Footer styles */
footer {
    text-align: center;
    background: rgba(0, 0, 0, 1);
    padding: 10px;
    margin-top: auto;
    bottom: 0;
    position: relative;
    color: white;
    width: 100%;
}

#footer-placeholder {
    width: 100%;
    margin-top: auto;
}

img, iframe {
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
}

.social-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
}

.social-links a:hover {
    color: #ffcc00;
}
