body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('background3.jpg') no-repeat center center fixed;
    background-size: cover; /* Adjust as needed (cover, contain, etc.) */
}

.banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 7.5%;
    background: rgba(255, 255, 255, 0.750); /* Transparent black background */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    z-index: 1000; /* Ensures it's above other content */
}

.banner .logo {
    color: black;
    font-size: 24px;
    font-weight:bold;
}

.banner .email-link {
    margin-right: 15px; /* Add some space between the logo and email icon */
}

.banner .email-link a {
    text-decoration: none; /* Remove underline */
    color: black;
}

.banner .email-link img {
    width: 36px; /* Adjust the icon size as needed */
    height: 36px;
    vertical-align: middle; /* Center vertically */
}

.container {
    text-align: center;
}
 /*
@font-face {
    font-family: 'Rubik_Iso';  Define a unique name for font 
    src: url('P:/ReDistruNow Inc/ReDistruNow_site_2/fonts/RubikIso-Regular.ttf') format('ttf');
}
*/

.logo {
    text-align: center;
    font-size: 60px; /* Adjust the font size as needed */
    color: white;
    font-weight: bold;
    font-family: "Gill Sans", sans-serif;
}

#logoText {
    opacity: 0; /* Initial opacity */
}

.static-text-container {
    text-align: center;
    height: 400px; /* Set a fixed height for the container */
    background: rgba (0, 0, 0, 0.7); /* Transparent black background */
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
}

.static-text {
    font-size: 24px;
    font-family: 'Arial', sans-serif;
    color: cornsilk;
}

@media (max-width: 762px){
    .banner {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 7.5%;
        background: rgba(255, 255, 255, 0.750); /* Transparent black background */
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        z-index: 1000; /* Ensures it's above other content */
    }
    
    .banner .logo {
        color: black;
        font-size: 24px;
        font-weight:bold;
    }
    
    .banner .email-link {
        margin-right: 15px; /* Add some space between the logo and email icon */
    }
    
    .banner .email-link a {
        text-decoration: none; /* Remove underline */
        color: black;
    }
    
    .banner .email-link img {
        width: 36px; /* Adjust the icon size as needed */
        height: 36px;
        vertical-align: middle; /* Center vertically */
    }
    
    .container {
        text-align: center;
    }
     /*
    @font-face {
        font-family: 'Rubik_Iso';  Define a unique name for font 
        src: url('P:/ReDistruNow Inc/ReDistruNow_site_2/fonts/RubikIso-Regular.ttf') format('ttf');
    }
    */
    
    .logo {
        text-align: center;
        font-size: 36px; /* Adjust the font size as needed */
        color: white;
        font-weight: bold;
        font-family: "Gill Sans", sans-serif;
    }
    
    #logoText {
        opacity: 0; /* Initial opacity */
    }
    
    .static-text-container {
        text-align: center;
        height: 224px; /* Set a fixed height for the container */
        background: rgba (0, 0, 0, 0.7); /* Transparent black background */
        padding: 10px;
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 1000;
    }
    
    .static-text {
        font-size: 24px;
        font-family: 'Arial', sans-serif;
        color: cornsilk;
    } 
}

/* Gradient animation */
@keyframes wave {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 0%;
    }
}

body {
    /* ... existing styles ... */
    animation: wave 20s linear infinite alternate; /* Wave animation */
}

