<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* General Body and Headings */
body {
    overflow-x: hidden;
}

h3 {
    color: brown;
}

/* The header */
.header {
    position: fixed;
    text-align: center;
    left: 150px;
    right: 0px;
    top: 0px;
    height: 130px;
    background-image: url(../assets/img/Washington\ Picture.jpg);
    background-position: 150% 17%;
    color: white;
    font-family: 'Times New Roman', Times, serif
}

/* The leftbox */
.leftbox {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 150px;
    height: 100%;
    background-color: rgba(139, 0, 0, 0.952);
    text-align: center;
    font-weight: bold;
}

/* The left Box Links */
.leftbox a {
    color: whitesmoke;
    font-weight: bold;
    text-decoration: none;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* Main text of the site */
.mainbox {
    position: absolute;
    background-image: url(../assets/img/Paper-background-2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: local;
    top: 130px;
    left: 150px;
    right: 0px;
    padding: 30px;
    line-height: 2em;
    min-height: 100vh;
    font-family:Verdana, Geneva, Tahoma, sans-serif
}

/* Tableau */
.tableau-section {
    margin-left: 0; /* Ensure no extra margin */
    padding-left: 150px; /* Offset by the width of the .leftbox */
    padding-right: 30px; /* Ensure padding to match the main content */
    position: relative;
    bottom: 0px;
    right: 0px;
    left: 0;
    height: calc(100vh - 160px); /* Adjust height to match .mainbox minus paddings and margins */
    overflow: hidden; /* Prevent overflow */
}

/* This is the CSS for the Youtube Video */
.videosettings {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    height: auto; /* Adjust based on content */
    width: 200px; /* Adjust width to fit content */
    margin: 20px 0; /* Optional: Adds margin for spacing */
    border: 3px dashed rgba(139, 0, 0, 0.952);
    padding: 15px;
    background: #EAF0F6;
    background-clip: border-box;
}

/* Ensures iframe is responsive and maintains aspect ratio */
.videosettings iframe {
    max-width: 100%;
    height: auto;
}

</pre></body></html>