* { box-sizing: border-box; }  

html, body {  
    margin: 0;  
	padding-top: 60px; /* Adds space at the top to prevent overlap */
    display: flex;  
    flex-direction: column;  
    align-items: center;  
    justify-content: center;  
    height: 100%;  
    background-color: #000000; /* Keeps background black */  
    text-align: center;  
    font-family: "Times New Roman", serif;  
}  

@media screen and (min-width: 768px) {
    /* Styles for tablets and larger devices */
    body {
        font-size: 16px;
    }
}

.banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: white;
    padding: 20px;
    z-index: 10;
}

.header {
    margin-top: 100px; /* Adjust for banner height */
    padding: 20px;
    text-align: center;
    background-color: #f4f4f4;
}

@media screen and (max-width: 768px) {
    .banner {
        position: fixed;
        top: 0;
        width: 100%;
    }

    .header {
        padding-top: 120px; /* Adjust for banner */
    }
}

#im4p {  
    background-color: #000000;  
    background-repeat: no-repeat;  
    background-position: center top;  
    background-attachment: scroll;  
    background-size: contain;  
    background-image: url('/WatsonLabsLogo.png');  
    width: 100%; /* Ensure element has a width */  
    height: 60%; /* Adjust height to make space for text */  
}  

#text-box {  
    color: #FFB71B;  
    font-size: 20px;  
    margin-top: 2%; /* Adds space below logo */  
}  

#text-box a {  
    color: #FFB71B;  
    text-decoration: none; /* Removes underline */  
}  

#text-box a:hover {  
    text-decoration: underline;  
}


h1, h2 {
    color: #FFB71B !important; /* Forces gold color */
}

h1 {
    margin-top: 45%; /* Pushes the heading down below the banner */
}

	
li {
	color: #FFB71B; /* Gold text */
    text-align: left;
	margin-bottom: 2%
}

#banner {
	position: fixed; /* Keeps it at the top */
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    padding: 10px 5%;
    display: flex;
    justify-content: center; /* Centers the links horizontally */
    align-items: center;
    background-color: #000; /* Black background */
    flex-wrap: wrap;
    min-height: 50px;
    border-bottom: 2px solid #FFB71B; /* Gold underline for visibility */
	z-index: 10; /* Ensures it stays above other elements */
}

#banner a {
    margin: 0 20px; /* Space between links */
    color: #FFB71B !important; /* Ensure links are gold */
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    min-width: 100px;
    min-height: 50px;
    display: flex;
    align-items: center; /* Center text vertically */
    justify-content: center; /* Center text horizontally */
}

#banner a:hover {
    text-decoration: underline;
}


/* Ensure links in content are also gold */
#content a {
    color: #FFB71B;
    text-decoration: none; /* Remove underline */
}

#content a:hover {
    text-decoration: underline; /* Underline on hover */
}

#content {
    width: 80%;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
}

#text-box {
    color: #FFB71B;
}

body, h1, h2, p {
    color: #FFB71B; /* Gold text */
    text-align: center; 
}

/* Viewport Height Bug Fix for iOS */
@supports (-webkit-touch-callout: none) {
    html, body {
        height: 100%;
        -webkit-overflow-scrolling: touch;
    }

    /* Banner fix for iOS */
    .banner {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 10;
        background-color: #000000;
        padding: 20px;
    }

    .header {
        padding-top: 80px; /* Adjust accordingly */
        margin-top: 0;
        text-align: center;
        background-color: #000000;
    }
}







