:root {
    --background-color: #0F222D;
    --logo-color: #DB321A;
    --accent-color: rgb(171, 171, 186);
    --main-font: "Segoe UI", 'arial', Times, serif;
}

#post_head {
    margin-top: 0px;
    margin-left: 2.5%;
    font-family: "Times";
    user-select: none;
}

.post_div {
    position: relative;
    left: 50%;
    transform: translate(-50%, 0%);
    margin-top: 20px;
    margin-bottom: 40px;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 17px;
    padding-bottom: 17px;
    width: 80%;
    border-width: 4px;
    border-style: solid;
    border-radius: 10px;
    border-color: black;
    height: 300px;
    overflow: hidden;
    user-select: none;
}

.post_title {
    font-family: var(--main-font);
    font-size: 35px;
    text-emphasis: 3px;
    margin: 0px;
}

.date_text {
    color: var(--accent-color);
    margin-left: 1%;
}

.post_link {
    text-decoration: none;
    color: black;
}

.post_link:hover {
    text-decoration: underline;
}

#show_btn {
    position: absolute;
    height: 40px;
    width: 8%;
    background-color: rgb(61, 61, 242);
    color: white;
    border-color: transparent;
    border-radius: 7px;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-bottom: 25px;
    font-size: 18px;
    cursor: pointer;
}

