@media only screen and (min-device-width: 1024px){
    body{
        box-sizing: border-box;
        color: black;
    }.sendmessagecontainer{
        width: 100%;
        height: auto;
        display: flex;
        flex-wrap: wrap;
    }.contactformlabel{
        width: 100%;
        display: flex;
        justify-content: center;
        text-align: center;
        align-items: center;
        font-size: 18px;
        background-color: transparent;
        height: 30px;
        margin-bottom: 10px;
    }.contactform{
        width: 100%;
        height: auto;
        display: flex;
        flex-wrap: wrap;
    }.namefieldcontainer{
        width: 100%;
        height: 30px;
        display: flex;
        justify-content: right;
        align-items: center;
        margin-bottom: 5px;
        margin-top: 10px;
    }.namevaluinput{
        height: 100%;
        box-sizing: border-box;
        width: auto;
        display: flex;
        flex: 1;
    }.nameinputlabel{
        box-sizing: border-box;
        width: 100px;
        display: flex;
        height: 100%;
        justify-content: right;
        text-align: right;
        align-items: center;
    }.familynamecontactfiedlcontainer{
        box-sizing: border-box;
        width: 100%;
        height: 30px;
        display: flex;
        align-items: center;
        margin-bottom: 10px;
    }.subjectcontainer{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }
    .subjectofthemessage{
        width: 100%;
        height: 20px;
        display: flex;
        justify-content: center;
        margin-bottom: 5px;
    }.subjectinputvalue{
        width: 100%;
        height: 30px;
        text-align: right;        
    }.themessagecontainer{
        width: 100%;
        height: auto;
        min-height: 100px;
        margin-top: 10px;
        border: 1px solid transparent;
        display: flex;
        flex-wrap: wrap;
        padding: 0px;
    }.messagelabel{
        width: 100%;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: right;   
        padding-right: 10px;  
        background-color: transparent;   
    }.themessageitself{
        width: 100%;
        height: auto;
        min-height: 200px;
        margin-top: 0px;
        resize: none;
        text-align: right;
        padding-right: 5px;
    }.contactformsubmitcontainer{
        width: 100%;
        display: flex;
        height: 20px;
        background-color: orange;
        justify-content: right;
        align-items: center;
    }.submitformcontainer{
        width: 100%;
        height: 30px;
        align-items: center;
        margin-top: 5px;
        display: flex;
        border: 1px solid green;
    }.submitformbutton{
        height: 100%;
    }.filesinputcontainer{
        width: 100%;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        /* this is the container for files, which contain the input and the 
        number of files selecteed, it is a div after the input tag inside this 
        container. 
        */
    }
    #files{
        width: 100%;
        height: auto;
    }
    #filesnumber{
        width: 100%;
        height: 20px;        
    }#filesnumber{
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: left;
    }
}