.article {
    margin-left: 30px;
    height: 100px;
    width: 600px;
    outline-width: 5px;
    outline-color: black;
    outline-style:  dashed;
    outline-offset: 10px;
    color: inherit !important; /* This will make the link color the same as the surrounding text */
    text-decoration: none !important; /* This will remove the underline */
    transition: transform 0.3s ease; /* Smooth transition for scaling */
    /* Add any other styling for the .article div */

}
.article:hover {
    background-color: #f0f0f0; 
    transition: background-color 0.3s ease; 
    transition: transform 0.3s ease; 
    transform: scale(1.05); 
}

.articlehome {
    margin-left: 300px;
    height: 100px;
    width: 600px;
    outline-width: 5px;
    outline-color: black;
    outline-style: dashed;
    outline-offset: 10px;
    color: inherit !important; /* This will make the link color the same as the surrounding text */
    text-decoration: none !important; /* This will remove the underline */
    transition: transform 0.3s ease; /* Smooth transition for scaling */
    /* Add any other styling for the .article div */
}

    .articlehome:hover {
        background-color: #f0f0f0;
        transition: background-color 0.3s ease;
        transition: transform 0.3s ease;
        transform: scale(1.05);
    }

