a {
    text-decoration: none;
    color: rgb(127, 140, 25);
    font-weight: bolder;
}

.blog {
    width: 99%;
    margin: auto;
    margin-top: 10px;
}

.blog_panel {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #777777;

    background-color: rgb(0, 0, 0, 0.7);
}

.blog_header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;

    font-family: "BN5 DS Thin", "Playfair Display", sans-serif
}

.blog_column {
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;

    font-family: "BN5 DS Thin", "Playfair Display", sans-serif
}

.blog_title {
    color: white;

    padding: 6px;
    
    text-align: center;
    font-size: 28px;
    font-weight: bold;

    font-family: "BN5 DS Thin", "Playfair Display", sans-serif;
}

.blog_author {
    padding: 6px;

    text-align: center;
    color: white;
    font-size: 20px;
    font-weight: bold;

    font-family: "BN5 DS Thin", "Playfair Display", sans-serif
}

.blog_date {
    padding: 6px;

    text-align: right;
    color: white;
    font-size: 18px;
    font-weight: bold;

    font-family: "BN5 DS Thin", "Playfair Display", sans-serif
}

.line_break {
    width: 99%;

    margin-top: -28px;
    margin-left: auto;
    margin-right: auto;   
}

.blog_content {
    color: white;

    display: flex;
    flex-direction: row;
    width: 100%;

    font-family: "BN5 DS Thin", "Playfair Display", sans-serif
}

.poster {
    width: 120px;
}

.poster img {
    width: 120px;
}

.post p {
    padding: 0 8px 0 8px;
}

.post img {
    width: 40%;
    min-width: 300px;
    display: block;
    margin: auto;

    transition: width 0.3s;
}

.post a {
    text-decoration: none;
    color: rgb(127, 140, 25);
}

.post img:hover {
    width: 90%;
    transition: width 0.3s;
}

.post a:hover {
    text-decoration: underline;
}

.post iframe {
    display: block;
    margin: auto;
}

.blog_vid {
    width: 33vw;
    height: 18.5625vw;
    margin-left: 16vw;
}

.blog_sp {
    background-color: #ffffff;
    cursor: help;
    color: #ffffff;
}

.blog_sp_removed {
    background-color: #777777;
}

.disclaimer {
    background-color: red;
    text-align: center;
    display: block;
    font-weight: bolder;
}

@media only screen and (max-width: 1200px) {
    .blog_panel {
        width: 75%;
    }
}

@media only screen and (max-width: 830px) {
    .blog_panel {
        width: 90%;
    }

    .post img {
        width: 100%;
        margin-left: 0px;
    }

    .post img:hover {
        width: 100%;
    }
    
    .poster {
        display: none;
    }

    .blog_vid {
        width: 66vw;
        height: 37.125vw;
        margin-left: 16px;
    }
}