
.intro {
    display: flex;
    flex-direction: row;
    place-content: center;
    place-items: center;
    gap: 10px;
}

.articles {
    display: flex;
    flex-direction: row;
    place-content: center;
    place-items: center;
    gap: 10px;
}

.article {
    display: flex;
    flex-direction: column;
    place-items: center;
    place-content: center;
    background-color: var(--base_bg);
    border-radius: 20px;
    color: var(--base_text_color);
    position: relative;
    outline: none;
    border: solid 5px #282828;
    padding: 5px 5px;
}

.article img {
    width: 100%;
    height: 100%;
    max-width: 300px;
    max-height: 200px;
    object-fit: cover;
    border-radius: 20px;
}
