* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #0d0f14;
    color: #ddd;
    font-family: Baskerville, "Baskerville Old Face", "Hoefler Text", Garamond, "Times New Roman", serif;
}

.home-button-container {
    position: fixed;
    top: 20px;
    right: 70px;
    z-index: 10;
}

.btn-nav {
    padding: 8px 18px;
    border: 1px solid #c9a86a;
    border-radius: 40px;

    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.btn-nav:hover {
    background: #c9a86a;
    color: #0d0f14;
}

.header-blog {
    padding: 120px 70px 50px;
}

.header-blog h2 {
    font-size: 48px;
    margin-bottom: 30px;
    font-style: italic;
}

.blog-post {
    position: relative;
    padding: 60px 70px;
    margin-bottom: 40px;
}

.blog-post::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 70px;
    right: 70px;
    height: 2px;

    background: #c9a86a;
    border-radius: 1px;
}

.post-title {
    font-size: 36px;
    margin-bottom: 10px;
}

.post-date {
    display: block;
    margin-bottom: 20px;

    font-size: 14px;
    color: #c9a86a;
}

.post-text {
    max-width: 750px;
    margin-bottom: 20px;

    font-size: 18px;
    line-height: 1.8;
}

.blog-post .btn-outline {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 34px;

    border: 1px solid #c9a86a;
    border-radius: 40px;

    color: #c9a86a;
    text-decoration: none;
    transition: 0.3s;
}

.blog-post .btn-outline:hover {
    background: #c9a86a;
    color: #0d0f14;
}
