@media (orientation: landscape)
{
    .thread-container
    {
        width: calc(max(70%, 500px));
        max-width: 750px;
    }

    .thread
    {
        width: calc(100% - 100px);
        background-color: hsla(220, 100%, 99%, 0.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(220, 100%, 99%, 0.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(220, 100%, 99%, 0.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(220, 100%, 99%, 0.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 10px 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;
}