@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;700&family=Roboto:wght@400;700&display=swap');

body {
    margin: 0;
    overflow: hidden;
    /* Out of service rusted sign background */
    background-color: #ffffff;
    background-image: url('body-image.png');
    background-size: contain; /* makes it big but keeps the whole sign visible */
    background-position: center center;
    background-repeat: no-repeat;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    display: flex;
    align-items: flex-end;
    height: 100vh;
}

.news-banner {
    width: 100%;
    background: rgba(20, 20, 20, 0.95);
    border-top: 5px solid #e74c3c;
    padding: 30px 50px;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.6);
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.banner-content {
    flex: 1;
}

.notice-image {
    max-height: 160px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    object-fit: contain;
}

.breaking {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 8px 15px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    animation: flashInfo 1.5s infinite;
}

.headline {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #f1c40f;
    line-height: 1.2;
    margin-bottom: 10px;
}

.subtext {
    font-size: 1.3rem;
    color: #ecf0f1;
    font-weight: 400;
    letter-spacing: 1px;
}

@keyframes flashInfo {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; background-color: #c0392b; }
}

/* 


*/