﻿/* styles.css */

/* Header 1 - Darker green background with white text */
.jumbotron {
    background: linear-gradient(to bottom, #194182, #5594c2);
    color: white;
}


body {
    background-color: #5594c2; /* Pale green color */
    color: #f0efeb;
}

.text-dark {
    color: #003366; /* Dark blue */
}


/* Falling formulas container */
/* CSS for falling formulas container */
.falling-formulas {
    position: fixed;
    top: 0;
    width: 100px; /* Adjust width as needed */
    height: 100%;
    pointer-events: none;
    z-index: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Ensures the formulas are centered vertically */
}

.left-formulas {
    left: 50px; /* Set a small margin from the left side */
}

.right-formulas {
    right: 70px; /* Set a small margin from the right side */
}


.formula {
    color: #f0efeb;
    font-size: 16px;
    margin: 10px 0;
    animation: fall 10s linear infinite;
    white-space: nowrap;
}

    .formula:nth-child(2) {
        animation-delay: 2s;
    }

    .formula:nth-child(3) {
        animation-delay: 4s;
    }

    .formula:nth-child(4) {
        animation-delay: 6s;
    }

@keyframes fall {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}


