@media (orientation: landscape)
{
    .thread-container
    {
        width: calc(max(70%, 500px));
        max-width: 750px;
    }

    .thread
    {
        width: calc(100% - 100px);
        background-color: hsla(0, 0%, 100%, 85%);
        border-radius: 15px;
        padding: 20px 50px;
        margin: 8px 0px;
        box-shadow: 0px 2px 5px hsl(0, 0%, 75%);
    }

    .thread-seperator
    {
        width: calc(100% - 100px);
        background-color: hsla(0, 0%, 100%, 85%);
        border-radius: 15px;
        padding: 15px 50px;
        margin: 27px 0px 8px 0px;
        box-shadow: 0px 2px 5px hsl(0, 0%, 75%);
    }
}

@media (orientation: portrait)
{
    .thread-container
    {
        width: 100%;
    }

    .thread
    {
        width: calc(100% - 60px);
        background-color: hsla(0, 0%, 100%, 85%);
        padding: 25px 30px;
        margin: 5px 0px 5px 0px;
        box-shadow: 0px 2px 5px hsl(0, 0%, 75%);
    }

    .thread-seperator
    {
        width: calc(100% - 60px);
        background-color: hsla(0, 0%, 100%, 85%);
        padding: 25px 30px;
        margin: 25px 0px 5px 0px;
        box-shadow: 0px 2px 5px hsl(0, 0%, 75%);
    }
}

.thread-title
{
    font-weight: bold;
    font-size: 0.65cm;
    color: hsl(0, 0%, 0%);
    margin: 0px 0px 3px 0px;
    text-decoration: none;
}

.thread-subtitle
{
    font-weight: bold;
    font-size: 0.55cm;
    color: hsl(0, 0%, 0%);
    margin: 0px 0px 3px 0px;
    text-decoration: none;
}

.thread-date
{
    font-weight: normal;
    font-size: 0.3cm;
    color: hsl(0, 0%, 30%);
    margin: 0px 0px 3px 0px;
    text-decoration: none;
}

.thread-text
{
    font-weight: normal;
    font-size: 0.45cm;
    color: hsl(0, 0%, 0%);
    margin: 0px;
    text-decoration: none;
    word-wrap: break-word;
}

/* ===== OBSOLETE BELOW THIS LINE ===== */

.comment-a
{
    font-weight: normal;
    font-size: 0.4cm;
    color: hsl(0, 0%, 50%);
    margin: 0px 0px 0px 25px;
    text-decoration: none;
    transition: 0.1s;
}

.comment-a:hover
{
    color: hsl(142, 67%, 59%);
}

.post-input
{
    padding: 0.25cm 0.5cm;
    width: calc(100% - 1cm);
    height: 150px;
    resize: none;
    border-bottom: solid 1px hsl(0, 0%, 50%);
    background-color: hsl(0, 0%, 99%);
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
    border-radius: 5px;
    margin: 0px;
    font-size: 0.45cm;
    transition: 0.1s;
}

.post-input:focus
{
    border-bottom: solid 3px hsl(142, 67%, 59%);
}

.reply-input
{
    padding: 0.25cm 0.5cm;
    width: calc(100% - 1cm);
    height: 75px;
    resize: none;
    border-bottom: solid 1px hsl(0, 0%, 50%);
    background-color: hsl(0, 0%, 99%);
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
    border-radius: 5px;
    margin: 0px;
    font-size: 0.45cm;
    transition: 0.1s;
}

.reply-input:focus
{
    border-bottom: solid 3px hsl(142, 67%, 59%);
}