    
    body {
    background-color: #f4f4f4 !important;
    margin-top: 80px;
    }
    
    .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    }
    
    .intro {
    margin: 40px 20px;
    text-align: center;
    }
    
    .intro h1 {
    color: black;
    }
    
    .intro p {
    color: black;
    text-align: center;
    }
    
    .content art {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 18px;
    text-decoration: none;
    margin: 10px;
    }
    
    .imageDiv {
    width: 300px;
    height: 170px;
    overflow: hidden;
    position: relative;
    border-radius: 6px;     
    }
    
    .imageDiv img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.2s ease;
    }

    .imageDiv img:hover {
    opacity: 0.7;
    }
    
    .textContainer {
    width: -webkit-fill-available;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 20px;
    height: 170px;
    justify-content: flex-start;
    }
    
    .textContainer a {
    color: black;
    font-size: 20px;
    margin-top: 8px;
    transition: color 0.2s ease;
    }
    
    .textContainer a:hover {
    color: #4780B6;
    }
    
    .textContainer p {
    color: black;
    }
    
    .dateText {
    font-style: italic;
    margin: 0;
    }
    
    .articleCategory {
    color: #4780B6 !important;
    font-weight: bold !important;
    margin: 0;
    }
    
    .popularDiv {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: fit-content;
    max-width: 1000px;
    margin: 0 5%;
    }
    
    .popularDiv h3 {
    width: -webkit-fill-available;
    border-bottom: 1px solid #ddd;
    text-align: center;
    padding-bottom: 14px;
    }
    
    .popularDivResults {
    display: flex;
    flex-direction: column;
    }
    
    .searchBar {
    width: -webkit-fill-available;
    margin: 10px calc(5% + 30px) 30px calc(5% + 30px);
    text-align: center;
    }
    
    #searchBar {
    padding: 12px 20px;
    font-size: 20px;
    border-radius: 50px;
    background-color: white;
    border: 1px solid #dddddd;
    transition: all 0.5s ease;
    width: -webkit-fill-available;
    }
    
    #searchBar:focus {
    outline: none;
    transform: scale(1.01);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    }
    
    .results {
    width: -webkit-fill-available;
    margin: 0 5% 40px 5%;
    display: flex;
    flex-direction: column;
    padding: 10px;
    justify-content: center;
    }
    
    .results art {
    width: -webkit-fill-available;
    padding: 10px;
    }
    
    @media screen and (max-width: 860px) {
        
        .results art {
        flex-direction: column;
        align-items: flex-start;
        }
        
        .results .textContainer {
        margin: 20px 0 0 0;
        height: fit-content;
        }
        
        .popularDivResults art {
        flex-direction: column;
        align-items: flex-start;
        width: -webkit-fill-available;
        }
        
        .popularDivResults .textContainer {
        margin: 20px 0 0 0;
        height: fit-content;
        }
        
    }
    
    