body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
    z-index: 1;
    cursor: none;
}

#mouseFollower {
    position: absolute;
    width: 50px; /* Or any size you want */
    height: 50px; /* Or any size you want */
    border-radius: 50%; /* Makes it round */
    background-color: white; /* Or any color you want */
    pointer-events: none; /* Ensures the cursor doesn't interact with the div */
    mix-blend-mode: difference; /* Set blend mode to difference */
    z-index: 1000;
}

.canvas-container {
    position: relative; /* Container for canvas and text */
    width: 100vw;
    height: 100vh; /* Adjust height if necessary */
    z-index: 1;
    background-color: #52e075; /* Fallback background color */

}

.canvas-container-2 {
    position: relative; /* Container for canvas and text */
    width: 100vw;
    height: 100vh; /* Adjust height if necessary */
    z-index: 1;
    /* background-image: url('bg2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
    width: 100%; /* Full width of the parent element */
    height: 100vh; /* Full height of the viewport */
     
}
.canvas-container-3 {
    position: relative; /* Container for canvas and text */
    width: 100vw;
    height: 100vh; /* Adjust height if necessary */
    z-index: 1;
    background-image: url('2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%; /* Full width of the parent element */
    height: 100vh; /* Full height of the viewport */  
}
.subtitles {
    position: absolute;
    bottom: 10px; /* Position at the bottom of the container */
    left: 0;
    right: 0;
    color: white; /* White text color */
    text-align: center; /* Center-align text */
    font-size: 1.2em; /* Adjust font size as needed */
    z-index: 10; /* Ensure it's above other content */
    font-family: Arial, Helvetica, sans-serif; /* Subtitle font */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Text shadow for better readability */
}

.subtitles p {
    margin: 0; /* Remove default paragraph margins */
    /* Additional text styling if needed */
}
canvas {
    position: relative; /* Container for canvas and text */

    display: block;
    width: 100%;
    height: 100%;
    z-index: 3; /* Higher z-index, so it's on top */

}
.white{
    color: white;
}
.bgblack{

    background-color: black;
}
.short{
    height: 20vh;;
}
.pink{
    color: #ff66db;

}
.overlay-text {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Domine', serif;
    z-index: 2;
    font-size: 10vw; /* Initial large font size */
    text-align: center;
}
.overlay-text-2 {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Domine', serif;
    /* mix-blend-mode: difference;  */
    /* or 'exclusion' */
    color: #000000; /* starting color; could be any */
    z-index: 2;
    font-size: 12vw; /* Initial large font size */
    text-align: center;
}

.hundred {

    top: 0;
}
/* This CSS will apply when the screen width is less than or equal to 768 pixels */
@media screen and (max-width: 768px) {
    #mouseFollower {
        display: none; /* Hide the mouseFollower div */
    }

    body {
        cursor: auto; /* Show the default cursor */
    }
}


.overlay-text-bottom {
    position: absolute;
    bottom: 5%; /* Position text at the bottom of the container */
    right:5%;
    width: 20%; /* Ensure it spans the entire container */
    font-family: 'Domine', serif;
    font-size: 2em;
    color: gold;
    text-align: center;
    z-index: 2;
}