.scroll_article {
    height: 100vh;
}
.scroll {
    margin: 20px auto;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-height: 100em;
    width: 50em;
}

.contents {
    max-height: 180vh;
    overflow-y: scroll;
    padding: auto;
    line-height: 1.6;
    margin: auto;
}

.contents img {
    width: 90%;
    height: 90%;
    margin-bottom: 20px;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    border: black solid 0.5px;
}

/* Custom scrollbar styling */
.contents::-webkit-scrollbar {
    width: 10px;
    height: auto;
}

.contents::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px;
}

.contents::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}