* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    
}

body, html {
    background: #0d0e12;
    color: aliceblue;
    scroll-behavior: smooth;
    background-image: url(../assets/background.png);
    
}

.blog {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 1rem;
}


h1 {
    font-family: "Lora", serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: #f5f5f5;
}


.blog_content p {
    font-size: 1.125rem;
    line-height: 2;
    margin-bottom: 1.5rem;
    color: #dbeafe;
    font-weight: 300;

}

.blog_img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    margin-bottom: 1rem;
}

.blog_img_caption {
    font-size: 0.95rem;
    color: #9ca3af;
    font-style: italic;
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

hr {
    border: none;
    height: 2px;
    background-color: #be95be;
    margin: 1rem 0 2rem;
    width: 300px;
}

.back-button {
    display: inline-block;
    margin-bottom: 2rem;
    color: #be95be;
    text-decoration: none;
    font-weight: 400;
}

.back-button:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .blog_content p {
        font-size: 1.05rem;
    }

    .hr {
        width: 200px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }

    .blog_content p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .blog_img_caption {
        font-size: 0.85rem;
    }

    .blog {
        margin: 60px auto;
        padding: 0 1rem;
    }

    hr {
        width: 150px;
    }
}
