@import url('https://fonts.googleapis.com/css2?family=lemon&family=Baloo+Bhaina+2&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
}

body {
    background-image: url('imgs/hello.gif');
}

h1 {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    text-align: center;
    color: white;
    font-size: 60px;
    margin-top: 50px;
}

.post-container {
    margin-top: 60px;
}

.post-container .post {
    width: 350px;
    background: #fff;
    box-shadow: 0 3px 5px rgba(0,0,0,0.3);
    margin: 0 auto;
    padding-bottom: 20px;
    cursor: pointer;
    border-radius: 10px;
}

.post-container .post .image img {
    height: 350px;
    width: 350px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 10px;
}

.post-container .post .content {
    padding: 0 20px;
}

.post-container .post .content .date {
    margin: 10px 0;
    font-size: 15px;
    color: #555;
}

.post-container .post .content .title {
    font-weight: 600;
    font-size: 22px;
    color: #333;
    text-transform: capitalize;
}

.post-container .post:hover .title {
    text-decoration: underline;
    color: #777;
}

.post-container .post .content p {
    font-size: 14px;
    padding: 5px 0;
    color: #777;
}

.post-container .post .content .link {
    display: block;
    color: coral;
    margin-top: 10px;
}

.post-container .post .content .link:hover {
    color: #333;
}