.blogs {
    padding: 50px 20px 240px 40px;
}
.blogs h1 {
    font-size: 250%;
    text-align: center;
    margin-top: 0;
    margin-bottom: 30px;
}
.blogsubtitle {
    font-style: italic;
    text-align: center;
    margin-bottom: 30px;
}

.links {
    flex-direction: column-reverse;
    gap: 30px;
    padding: 0;
}
.links li {
    background-color: rgb(75, 75, 88);
    height: 100px;
    display: flex;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.626);
    justify-content: start;
}
.links li a {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.links li img {
    object-fit: contain;
    max-height: 100%;
}
.entryname {
    margin-top: 25px;
    margin-left: 120px;
    font-size: 180%;
}
.date {
    width: 110px;
    align-self: self-start;
    margin-left: auto;
    margin-top: 5px;
}
.links a:hover{
    color: white;
}
.links li:hover {
    box-sizing: border-box;
    border: 3px solid black;
}

@media screen and (max-width: 780px) {
    .entryname {
        margin-left: 50px;
    }
}
@media screen and (max-width: 560px) {
    .blogs {
        padding: 50px 10px 240px 10px;
    }
    .entryname {
        margin-top: 25px;
        margin-left: 20px;
        font-size: 130%;
    }
}
@media screen and (max-width: 350px) {
    .date {
        visibility: hidden;
    }
    .entryname {
        width: 100%;
    }
}