/* Basic Reset */
body, h1, h2, h3, p, a, ul {
    margin: 0;
    padding: 0;
}
body {
      /* Stretch the GIF to cover the whole page */
    background: url('/images/infoworld.gif') no-repeat center center fixed;
    background-color: #1a1a1a;
    background-size: cover; /* Ensures the GIF covers the entire viewport */
    height: 100vh; /* Full height of the viewport */
    display: flex;
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
    color: black; /* Text color for visibility */
    font-family: Arial, sans-serif;
    overflow: hidden; /* Prevent scrolling if the content is small */
}
 
/* Center Container */
.container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

/* Table Layout */
table.layout {
    width: 100%;
    border: 1px solid #333;
    background-color: #2a2a2a;
    color: #e0e0e0;
}

/* Header */
.header {
    background-color: #111;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
}
.header h1 {
    font-size: 2.5em;
    margin-bottom: 5px;
}
.header p {
    font-style: italic;
    color: #cccccc;
}

/* Navigation Bar */
.nav-bar {
    background-color: #333;
    text-align: center;
    padding: 5px 0;
}
.nav-bar a {
    color: #aaa;
    text-decoration: none;
    font-weight: bold;
    padding: 0 10px;
}
.nav-bar a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Main Content */
.content {
    vertical-align: top;
}
.main-content {
    padding: 15px;
    width: 70%;
    border-right: 1px solid #444;
}
.main-content h2 {
    color: #bd2828;
}
.main-content h3 {
    color: #bd2828;
    font-size: 1.2em;
    margin-top: 20px;
}
.main-content p a {
    color: #bd2828;
    text-decoration: none;
}
.main-content p a:hover {
    text-decoration: underline;
}

/* Sidebar */
.sidebar {
    padding: 15px;
    width: 30%;
    background-color: #1e1e1e;
}
.sidebar h3 {
    color: #bd2828;
    margin-bottom: 10px;
}
.sidebar ul {
    list-style: disc;
    padding-left: 20px;
    color: #cccccc;
}
.sidebar ul li a {
    color: #aaa;
    text-decoration: none;
}
.sidebar ul li a:hover {
    text-decoration: underline;
}
.sidebar p {
    font-style: italic;
    color: #bbbbbb;
}

/* Footer */
.footer {
    background-color: #333;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9em;
    color: #cccccc;
}
.footer p {
    margin: 0;
}

.leavetxt {
    color: #5d7570;
    text-decoration: none;
    font-size: 1.2em;
    text-align: center;
    animation: flash 1.5s infinite alternate;
}
.leavetxt:hover {
    text-decoration: underline;
}
/* Flash Animation */
@keyframes flash {
    from { color: white; }
    to { color: #66c0ff; }
}
