@media (min-resolution: 1.9dppx){

    div.content div.login{
        margin-top: 100px;
        min-height: 700px;
        display: flex;
        flex-direction: column;
        gap: 25px;
        justify-content: center;
        align-items: center;
        border: solid black 1px;
    }
    div.content div.login input, label, button, p{
        font-size: 18pt;
        height: 80px;
    }
    div.content div.login input, label, button{
        font-size: 18pt;
        height: 80px;
    }
    div.content div.login button,a{
        width: 70%;
        height: 100px;
    }
    div.content div.login a button{
        width: 100%;
    }
    div.content div.login span{
        width: 70%;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
    }
    div.content div.login label{
        width: 200px;
        height: 80px;
        line-height: 80px;
        vertical-align: middle;
        align-items: center;
    }
    div.content div.login input{
        border: solid black 1px;
        padding-left: 25px;
        min-width: 400px;
        width: auto;
        flex: 1;
    }
    
    div.content div.grid{
        border: solid black 1px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: stretch;
        gap: 20px;
        padding: 25px;
    }
    div.content div.grid a{
        text-decoration: none;
        background-color: var(--content-bg-color);
        color: var(--content-txt-color);
        display: flex;
        flex-direction: row;
        align-items: center;
        align-self: center;
        flex-grow: 1;
        min-width: 400px;
        width: auto;
        max-width: 600px;
        height: 200px;
    }
    div.content div.grid button{
        background-color: var(--content-bg-color);
        color: var(--content-txt-color);
        border: solid black 2px;
        border-color: var(--content-txt-color);
        display: flex;
        flex-direction: row;
        width: 100%;
        height: inherit;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-size: 30pt;
        font-family: Lato, sans-serif;
    }

    div.list{
        border: solid black 1px;
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding: 20px;
        width: inherit;
    }
    div.list a{
        width: inherit;
        height: 200px;
    }
    div.list button{
        height: inherit;
        width: 100%;
        font-size: 30pt;
        font-family: Lato, sans-serif;
        background-color: var(--content-bg-color);
        color: var(--content-txt-color);
        border: solid black 2px;
        border-color: var(--content-txt-color);
    }
    div.list button.new{
        background-color: var(--search-bg-color);
        color: var(--search-txt-color);
    }

    div.content div.form-view{
        display: flex;
        flex-direction: column;
        border: solid black 1px;
        font-size: 30pt;
        font-family: Lato, sans-serif;
    }
    div.content div.form-view span{
        display: flex;
        flex-direction: row;
        white-space: normal;
        align-items: stretch;
        justify-content: flex-start;
        align-content: center;
        border-bottom: solid black 1px;
        min-height: 100px;
        margin-top: 10px;
    }
    div.content div.form-view span label{
        font-size: 26pt;
        line-height: 1.2;
        height: 80px;
        width: 250px;
        text-align: right;
        display: block;
        align-self: center;
        margin: 5px;
        text-transform: uppercase;
        font-weight: bold;
        
    }
    div.content div.form-view span p{
        font-size: 26pt;
        line-height: 1.2;
        display: block;
        align-self: center;
        margin: 5px;
        margin-left: 20px;
        align-self: center;
    }
    div.content div.form-view span input{
        width: 200px;
        margin-left: 0px;
        padding-left: 10px;
        flex: 1;
        font-size: 30pt;
        border: solid black 1px;
        background-color: var(--content-bg-color);
        color: var(--content-txt-color);
    }
    div.content div.form-view span textarea{
        width: 200px;
        margin-left: 5px;
        flex: 1;
        font-size: 30pt;
        background-color: var(--content-bg-color);
        color: var(--content-txt-color);
        min-height: 500px;
    }
    div.content div.form-view span select{
        width: 200px;
        margin-left: 5px;
        flex: 1;
        font-size: 30pt;
        background-color: var(--content-bg-color);
        color: var(--content-txt-color);
        height: 100px;
    }
    div.content div.form-view span input[type="checkbox"]{
        max-width: 100px;
        margin-left: 15px;
    }
    div.content div.form-view span h1{
        font-size: 18pt;
        margin-left: 30px;
        margin-right: 10px;
    }
}