body {
    font-family: 'Garamond', serif;
    margin: 0;
    background-color: #1d1c1a;
    color: #f8f0e3;
    line-height: 1.6;
    overflow-x: hidden;
}
.welcomecontainer {
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.welcomecontainer img {
    max-width: 24em;
    margin: 10px auto;
    display: block;
}
.main-headline {
    font-size: 5em;
    font-weight: bold;
    text-align: center;
    letter-spacing: -2px;
    margin: 1px;
}
.welcome {
    font-size: 1.2em;
    font-weight: normal;
    text-align: left;
    max-width: 1000px;
    margin: 20px auto;
    color: #f8f0e3;
    padding: 20px;
    overflow: hidden;
}
.weather-paragraph {
    font-size: 1.1em;
    margin: 0;
    line-height: 1.6;
    text-align: justify;
    hyphens: auto;
    column-width: 25em;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.retro-graphics img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
}
.news-tab {
    margin-bottom: 40px;
    position: relative;
    overflow: visible;
    flex: 1;
}

.tab-header {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.article {
    margin-bottom: 40px;
    opacity: 0;
    transform: translateX(30px);
}

.article.animate {
    animation: slideInRight 0.5s ease-out forwards;
}

/* Shorter, more immediate delays */
.article:nth-child(1) { animation-delay: 0.05s; }
.article:nth-child(2) { animation-delay: 0.1s; }
.article:nth-child(3) { animation-delay: 0.15s; }
.article:nth-child(4) { animation-delay: 0.2s; }
.article:nth-child(5) { animation-delay: 0.25s; }

.article-headline {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #f8f0e3;
}

.article-content {
    font-size: 1em;
    color: #cecece;
}
.article a {
    font-size: 1em;
    color: #cecece;
}

.scrolling-out {
    opacity: 0;
    transform: translate(-50%, -80%);
}

.rss-section {
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
}

.rss-feed {
    max-height: 400px;
    overflow-y: auto;
    padding: 10px;
}

.feed-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.feed-item h4 {
    margin: 0 0 10px 0;
}

.feed-item a {
    color: #333;
    text-decoration: none;
}

.feed-item a:hover {
    text-decoration: underline;
}

.article img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    display: block;
    margin: 0 auto 15px;
    border-radius: 5px;
}

.article a {
    color: #333;
    text-decoration: none;
}

.article a:hover {
    text-decoration: underline;
}

#feed-container {
    max-height: none;
    overflow-y: visible;
    padding-right: 0;
}

#feed-container::-webkit-scrollbar {
    width: 8px;
}

#feed-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

#feed-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.sub-header {
    font-size: 1.5em;
    font-weight: bold;
    margin: 20px 0;
    padding-bottom: 5px;
    border-bottom: 1px dashed #ccc;
}

.feed-section {
    margin-bottom: 30px;
}

@keyframes slideInRight {
    0% {
        transform: translateX(30px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.fake-logo {
    font-family:'Garamond', sans-serif;
    text-align: right;
    margin-top: 20px;
    color:#f8f0e3;
    display: flex;
    align-items: center;
    gap: 10px;
}
.fake-logo img{
    height: 60px;
    display: block;
    margin-bottom: 20px;
    margin: 0px;
}
.fake-logo p{
    font-size: 2em;
}

.ibmpc-floated {
    float: left;
    margin: 0 20px 20px 0;
    width: 384px;
    height: 384px;
    shape-outside: url("ibmpc.png");
    shape-image-threshold: 0.9;
    shape-margin: 20px;
}