@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #fff;
    background-color: #000000;
    height: 50vh;
    font-family: "Poppins", sans-serif;
    display: flex;
    flex-direction: column;
}

#story-container {
    height: 95vh;
}

span i {
    color: rgb(0, 255, 0);
}

span {
    color: rgb(0, 255, 0);
}

.overlay {
    position: absolute;
    top: 20px;  /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    color: whitesmoke;
    text-align: center;
    z-index: 10;  /* Ensure it's above the 3D content */
    font-family: "Poppins", sans-serif;
}

h1 {
    font-size: 2.3rem;
    margin: 8px auto;
    font-weight: 600;
}

a{
    text-decoration: none;
    color: rgb(0, 255, 0);
}

a:hover{
    color: #fff;
}

p {
    font-size: 1.2em;
    margin: 0;
}

footer {
    font-size: 15px;
    color: rgb(0, 255, 0);
    text-align: center;
    font-weight: bolder;
    padding-bottom: 10px;

}


@media screen and (max-width: 600px) {
    h1 {
        font-size: 23px;
        font-weight: 600;
    }

    p {
        font-size: 15px;
        font-weight: 500;
        margin: 14px auto;
    }
    
    footer {
        font-size: 12px;
    }
   
}

@media screen and (max-width: 400px) {
    p {
        font-size: 13px;
        font-weight: 500;
        margin: 14px auto;
    }

    h1 {
        font-size: 1rem;
        font-weight: bolder;
    }
}


