body {
    background: #B59A7E  ; 
    font-family: "Times New Roman", serif;
    margin: 0;
    padding: 1rem;
    display: flex;
    flex-direction: column; 
    align-items: center; 
    
    }
    
    
    
    
/* -------------------------------------------------------------------------------------------- */




.intro {
    text-align: left;
    max-width: 45vw;
    padding: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: black; 
}




.newspaper {
    background: white;
    width: 45vw;
    padding: 1rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
    border: 0.2rem solid black;
}

header {
    text-align: center;
    border-bottom: 0.1rem solid black;
    padding-bottom: 0.7rem;
    margin-bottom: 1rem;
}

.newspaper-title {
    font-size: 3.5rem;
    font-weight: bold;
    text-transform: uppercase;
}

.newspaper-date {
    font-size: 1rem;
    font-style: italic;
}

.main-story { 
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.content {
    display: grid;
    gap: 1.3vw;
    grid-template-columns: 3fr 1fr; 
    align-items: stretch; 
    }


.main-content {
    font-size: 1rem;
    text-align: justify;
    column-count: 2; 
    column-gap: 2vw;
    column-rule: 0.2rem solid #ccc;
}



.warning {
    background: #f0f0f0;
    padding: 0.6rem;
    border: 0.2rem solid black;
    font-size: 0.9rem;
    font-style: italic;
    flex-shrink: 0;
    align-self: flex-start; 
}


