body {
    background: #fafafa;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h4 {
    font-size: 1rem;
    font-weight: bold;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    margin: 0 1rem;
    width: calc(100% - 2rem);
    box-sizing: border-box;
}

.news-container {
    border-top: 0.2rem solid rgba(148, 147, 147, 0.404);
    min-height: 6rem;
    width: 100%;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    min-height: 10rem;
    max-width: 30rem;
    border-radius: 2rem;
    background: #fff;
    margin: 1rem 0;
    padding: 2rem 1rem 0.9rem 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1),
            0 8px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
    align-items: center;
    font-family: "Special Gothic", Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}

.about-list {
    display: flex;
    text-align: left;
    font-size: 1.07rem;
    width: 100%;
}

.img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.img-settings {
    margin: 1rem;   
    max-width: 100%;
    height: auto;
    border-radius: 1rem;

}

/* Desktop - 80rem (1280px) and up */
@media (min-width: 80rem) {
    .container {
        flex-direction: row;
        justify-content: space-between;
        padding-top: 5rem;
        margin: 0 10rem;
        width: calc(100% - 20rem);
    }
    
    .news-container {
        min-width: 30rem;
    }
    
    .img-settings {
        max-width: 20rem;
        max-height: 20rem;
    }
}