@import url('https://fonts.googleapis.com/css2?family=Didact+Gothic&display=swap');

* {
    font-family: "Didact Gothic", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

@media screen and (min-width: 768px) {
    body {
        padding-top: 67.5px;
    }

    .content {
        padding-bottom: 80px;
    }
}

.container {
    padding: 1.5rem 3rem 1.5rem 3rem;
    border-top: 0.2px solid #d2d3d4;
    border-bottom: 0.2px solid #d2d3d4;
    margin-bottom: 20px;
    margin-top: 5px;
    background-color: #f6f6f6;
    
}

.container p {
    font-size: 18px;
    padding-left: 20px;
}


.content {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 100px;
}

.post {
    display: flex;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 20px;
    margin-left: 50px;
}

.post img {
    width: 300px; 
    height: auto;
    margin-right: 20px;
    transition: all 0.4s ease-in-out;
}

.post .title {
    font-weight: bold;
    margin-right: 20px; 
}

.post p {
    margin-bottom: 10px; 
}

.post a {
    text-decoration: none;
    color: black; 
    font-weight: bold;
}

.post img:hover {
    transform: scale(1.1);
}
.post a:hover {
    color: #f29400;
}

@media screen and (max-width: 768px) {
    .content {
        padding: 0px 30px;
    }
    .post {
        margin-left: 30px; 
        flex-direction: column; 
        align-items: center; 
    }
    .post img {
        width: 50%; 
        margin-right: 0; 
        margin-bottom: 10px; 
    }
    .post .title {
        
        margin-right: 0; 
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 15px; 
    }
    .content {
        padding: 0px 30px;
    }
    .post img {
        width: 40%; 
    }
}


@media screen and (min-width: 1500px) {
    .container p,
    .content {
        padding-left: 300px;
        padding-right: 300px;
    }
    .content {
        margin-bottom: 200px; 
    }
}