.writeups {
    width: 80%;
    word-wrap: break-word;
    margin: 50px 10% ;
    overflow: hidden;
}

.writeups-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    
    width: 100%;
    height: auto;
}

.writeups-list hr.divider{
    width: 100%;
    height: 1px;
    background-color: #5c5b48;
    border: none;
}

.writeup-link{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    
    width: 100%;
    height: auto;
}

.writeup-info{
    display: flex;
    flex-direction: row;
    justify-content: start;
    flex-wrap: wrap;

    gap: 35px;

    width: 100%;
    height: auto;
}

.writeup-link span{
    height: 25px;
    display: flex;
    justify-content: baseline;
    align-items: center;

}

.writeup-link span img{
    max-height: 20px;
    max-width: 20px;
    aspect-ratio: 1/1;
    margin-right: 8px;

    filter: invert(90%) sepia(56%) saturate(1861%) hue-rotate(334deg) brightness(112%) contrast(84%);
}


.writeup-link a:link{
    text-decoration: underline;
    /* color: inherit; */
    color: #fffb80;
}

.writeup-link a:hover{
    filter: brightness(0.8);
}

.writeup-link a:visited{
    color: #fffb80;
}