.article-detail-container{
    width: 80vw;
    max-width: 1000px;
    /* margin: 40px auto; */
    padding: 0 20px;
    font-family: 'Segoe UI', sans-serif;
    /* font-family: "Permanent Marker", cursive; */
    background-color: #fff;
    min-height: calc(100vh - 5vh);
}

.article-title{
    font-size: 2rem;
    color: black;
    margin-bottom: 20px;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 10px;
}

.article-image{
    width: 70%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 5px;
    margin: 20px 0;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
}

.article-body{
    font-size: 1.1rem;
    line-height: 1.75;
    /* color: #333; */
    color: black;
    margin-top: 20px;
    width: 90%;
}

.article-body p {
    margin-bottom: 1.5em;  /* or 24px */
}

.article-body u{
  text-decoration: underline;
}

@media (max-width: 650px) {
    .article-title {
        font-size: 1.65rem;
    }

    .article-body {
        font-size: .80rem;
    }

    .article-date {
        font-size: .70rem;
    }

    .article-image {
        width: 90%;
        max-height: 450px;
        object-fit: cover;
        border-radius: 5px;
        margin: 20px 0;
        /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
    }
}