/*About Us Page - Accessible from Laucnh Page*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body, html {
    width: 100%;
    height: 100%;
    color: #f0f0f0;
    background: #0f0f0f;
}

.container {
    min-height: 100vh;
    background-image: url('../Multi_Use_Images/Launch_Page_Background.png');
    background-position: center;
    background-size: cover;
    padding: 2rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.navbar {
    margin-bottom: 2rem;
}

.navbar-brand img {
    width: 120px;
    height: auto;
    display: block;
}

.about-content {
    background-color: rgba(0, 0, 0, 0.15); /*You can adjust the transparentcy of the black backplain here*/
    padding: 2rem;
    border-radius: 12px;
    max-width: 900px;
    backdrop-filter: blur(8px);
}

.about-content h1, .about-content h2 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #d8d8d8;
    font-size: 1rem;
}

hr {
    border: none;
    border-top: 1px solid #666;
    margin: 2rem 0;
}
@keyframes colorPulse {
    0% {
        color: #E62F1E; /*ADJUST FIRST FADE FRAME COLOUR. SET TO JFN RED IN THIS CASE*/
    }
    50% {
        color: #ffffff; /*ADJUST SECOND FADE FRAME COLOUR. SET TO WHITE IN THIS CASE*/
    }
    100% {
        color: #E62F1E /*ADJUST LAST FADE FRAME COLOUR. SET TO JFN RED IN THIS CASE*/
    }
}
.color-fade{
    animation: colorPulse 5s ease-in-out infinite; /*ADJUST THE FADE TIME DURATION*/
}
html {
    overflow-y: scroll; /* Always show scrollbar to avoid layout shift */
}