@charset "utf-8";

@media (max-aspect-ratio:4/3), (aspect-ratio:4/3)
{
    .search-bar
    {
        display:flex;
        flex-flow:column;
        width:80%;
        margin:auto;
        height:330px;
        background-image: linear-gradient(to right, #a9bffc, #8dabff);
        border:6px solid #000000;
        font-weight: bold;
    }
    .type-box-container
    {
        text-align: left;
        vertical-align: middle;
        font-size: 50px;
        margin-top: 25px;
        margin-bottom: 25px;
    }
    #Title
    {
        font-size: 50px;
        width: 500px;
        font-weight: bold;
    }
    .topic-chooser-container
    {
        text-align: left;
        vertical-align: middle;
        font-size: 50px;
        margin-top: 25px;
        margin-bottom: 25px;
    }
    #topic-chooser
    {
        font-size: 50px;
        font-weight: bold;
    }
    .search-button-container
    {
        display:table-cell;
        text-align: center;
        vertical-align: middle;
    }
    button
    {
        font-size: 60px;  
        font-weight: bold;
    }

    #search-results
    {
        width:85%;
        position:relative;
        left:15%;
    }

    .result-box
    {
        width:80%;
        margin-top: 50px;
        margin-bottom: 50px;
        background-image: linear-gradient(to right, #8dabff, #7da0ff);
        border:4px solid #000000;
    }
    .result-title
    {
        font-size:55px;
        font-weight: bold;
        font-stretch:condensed;
        color:black;
    }
    .result-date
    {
        font-size:40px;
        font-stretch: condensed;
        color:gray;
    }
    .result-paragraph
    {
        font-size: 25px;
        color:#454545;
    }
    .no-results
    {
        text-align: center;
        font-size: 28px;
        font-weight: bold;
        color:gray;
    }
}

@media (min-aspect-ratio:4/3)
{
    .search-bar
    {
        display:table;
        width:80%;
        table-layout:fixed;
        margin:auto;
        height:60px;
        background-image: linear-gradient(to right, #a9bffc, #8dabff);
        border:5px solid #000000;
    }
    .type-box-container
    {
        display:table-cell;
        text-align: center;
        vertical-align: middle;
        font-size: 28px;
    }
    #Title
    {
        font-size: 28px;
    }
    .topic-chooser-container
    {
        display:table-cell;
        text-align: center;
        vertical-align: middle;
        font-size: 28px;
    }
    #topic-chooser
    {
        font-size: 28px;
    }
    .search-button-container
    {
        display:table-cell;
        text-align: center;
        vertical-align: middle;
    }
    button
    {
        font-size:39px;
        font-weight: bold;  
    }

    #search-results
    {
        width:85%;
        position:relative;
        left:15%;
    }

    .result-box
    {
        width:80%;
        margin-top: 30px;
        margin-bottom: 30px;
        background-image: linear-gradient(to right, #8dabff, #7da0ff);
        border:3px solid #000000;
    }
    .result-title
    {
        font-size:40px;
        font-weight: bold;
        font-stretch:condensed;
        color:black;
    }
    .result-date
    {
        font-size:28px;
        font-stretch: condensed;
        color:gray;
    }
    .result-paragraph
    {
        font-size: 18px;
        color:#454545;
    }
    .no-results
    {
        text-align: center;
        font-size: 28px;
        font-weight: bold;
        color:gray;
    }
}
