/*
File: codaColaStyles.css
Site: TNT
Date: 8/09/19
Author: KLP
Comments:
*/

main {
    min-height: calc(120vh - 125px);   
}


div#content {
    max-width: 400px;
    margin: 0px auto 0px auto;
}

#charSet {
    width: 100%;
    margin-bottom: 0px;
}

input[type='text'] {
    width: 50px;
    max-width: 220px;
}

input#calculateBtn {
    display: block;
    margin-top: 20px;
/*
    background-color: green;
    padding: 10px;
    color: white;
    border-radius: 10px;
    clear: left;
    margin-top: 20px;
*/
}

#clearBtn {
    margin-top: 20px;
}

@media (max-width: 400px) {
    header h1 {
        font-size: 6vw;
    }
}

fieldset #directions {
    float: right;
    /*                background-color: pink;*/
    width: 40%;
}

fieldset #otherFormElements {
    float: left;
    /*                background-color: yellow;*/
    width: 55%;
}

#results {
    font-family: 'Courier New';
}

#results span {
    color: red;
    font-weight: bold;
}

@media (min-width: 800px) {
    /*blue*/
    div#content {
        max-width: 500px;
    }
}/*end blue media query*/

@media (min-width: 1200px) {
    /*green*/
    div#content {
        max-width: 1100px;
/*        background-color: pink;*/
        margin-left: 20px;
        margin-right: 20px;
    }
    
    form{
        float: left;
        margin-right: 20px;
    }
    
    div#results{
/*        float: right;*/
        margin-left: 20px;
        font-size: 12px;
    }
    
    form label{
        font-size: 18px;
    }
    
    form div#directions p{
        font-size: 18px;
    }
    
     div#results p{
        font-size: 15px;
    }
}/*end green media query*/
