/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Arial', sans-serif;
    color: #ffffff; /* Ensuring all text in the body is white by default */
    text-align: center;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar .logo {
    font-size: 20px;
    font-weight: bold;
    color: #ff5f5f;
}

.nav-links {
    display: flex;
    gap: 15px;
}

.nav-links li {
    list-style-type: none;
}

.nav-links a {
    text-decoration: none;
    color: #333; /* You may want to change this to white or something more readable on hover */
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff5f5f;
}

/* Snow Globe Section */
.snow-globe {
    position: relative;
    height: 100vh;
    background: url('https://media2.giphy.com/media/nFBaiqny3Jll2JOOOW/giphy.gif') no-repeat center center/cover; /* Snowfall GIF */
    background-attachment: fixed; /* Keeps the background fixed while scrolling */
    overflow: hidden;
}

.snow-globe-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff; /* Make the text white */
    z-index: 1;
    text-align: center;
}

.snow-globe-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

button {
    padding: 10px 20px;
    background: #ff5f5f;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 20px;
}

button:hover {
    background: #ff4040;
}

/* Music Controls */
audio {
    margin-top: 20px;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .snow-globe-content h1 {
        font-size: 2.5rem;
    }

    button {
        font-size: 1rem;
    }
}
