*{
    font-family: 'Roboto', sans-serif;
}

.pagination {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 10px;
}
.pagination a {
    display: inline-block;
    padding: 8px 16px;
    text-decoration: none;
    border: 1px solid #ddd;
    margin: 0 4px;
}
.pagination a.active {
    background-color: #4CAF50;
    color: white;
}
.pagination a:hover:not(.active) {
    background-color: #ddd;
}
.links-container {
    margin: 20px auto;
    max-width: 800px;
}
.links-container h1{
    text-align: center;
}
.link-item {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #373737;
    border-radius: 5px;
} 
.link-item .title {
    font-size: 18px;
    font-weight: 500;
}
.link-item .title a {
    color: #0051de;
    text-decoration: none;
}
.link-item-details{
    margin-top: 10px;
    border-top: 1px dashed #373737;
}
.link-item-details div {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}
.link-item-details a {
    color: #0051de;
    text-decoration: none;
}