@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;500;600&display=swap');

h1, h2, h3, h4, h5, h6, p {
    font-family: 'Poppins', sans-serif;
}

.container {
    margin-bottom: 100px;
}

.wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.content {
    width: 600px;
}

.content img {
    width: 800px;
}

.recent-post {
    width: 300px;
    margin-left: 290px;
}

.latest {
    display: flex;
}

.latest p {
    font-size: larger;
    margin-left: 20px;
}

.garis {
    width: 9px;
    height: 31px;
    background: #01B9F1;
}

.content-recent {
    display: flex;
    flex-direction: column;
}

.recent {
    display: flex;
    margin-top: 20px;
}

.recent p {
    margin-left: 20px;
}

.recent img {
    width: 100px;
}

.content-recent a {
    text-decoration: none;
    color: black;
}

.content-recent a:hover {
    color: black;
}

@media (max-width: 400px) {
    .content {
        width: 100%;
    }

    .content img { 
        width: 400px;
    }

    .recent-post {
        width: 100%;
        margin-top: 50px;
        margin-left: -5px;
    }
}