@import url(http://fonts.googleapis.com/css?family=Oswald);

.wrapper {
    display: grid;

    /* ELEMENT SQUEEZING TOO MUCH. FIGURE OUT LATER */
    /*  grid-template-columns: repeat(6, 250px); */
    grid-template-columns: repeat(6, minmax(250px, 1fr));
    grid-auto-rows: repeat(auto, minmax(100px, 1fr)); /*auto;*/
    /* border: 1px solid #666; */
    grid-template-areas:
    /*"leftc  leftc   header  header  rightc  rightc"*/
    "leftc      logo        logo        logo        logo        rightc"
    "leftc      title       title       title       title       rightc"
    "leftc      input       input       input       input       rightc"
    "leftc      results     results     results     results     rightc";
    margin: 20px auto 20px auto;
}

.leftcolumn{
    grid-area: leftc;
    /*border: 1px solid #666;*/
}

.rightcolumn{
    grid-area: rightc;
    /*border: 1px solid #666;*/
}

/*.header{
    grid-area: header;
    border: 1px solid #666;
    background-color: #000;
}*/

.logo{
    grid-area: logo;
    /* border: 1px solid #666;*/
    background-color: #403c3b;
    background-image: url(kinglogo.png);
    background-repeat: no-repeat; /* Use to show image only once */
    background-position: center center; /*2nd seems useless */
    height: 100px;
}

.title{
    grid-area: title;
    /*border: 1px solid #666;*/
    background-color: #403c3b;
    text-align: center;
    vertical-align: bottom;
    /*text-indent: 25%; use +/1 to move from center */
    /*height: 50px; ignore - height handled by .wrapper auto-row */
    /*line-height: 50px; read up. Leave alone now */
    /*width: 117px; Ignore: handled by .wrapper columns; */
    /*margin: 0 auto 0 auto; 0s pull in left and right */
    padding: 30px 0px 0px 0px;
    color: white;
}

.input{
    grid-area: input;
    border: 1px solid #666;
    background-color: #6cc0ac;
    margin: 5px 0px 5px 0px;
}

.results{
    grid-area: results;
    /* border: 1px solid #666; */
    /* Tied to size I have defined in .wrapper */
    display: grid;
    grid-template-columns: repeat(5, 200px);
    color: #fff;
    margin: 5px 0px 5px 0px;
}

p {
    margin-left: 5px;
}

body {
    background-color: #000;
    font-family: 'Oswald', 'Futura', sans-serif;
    margin: 0;
    padding: 0;}

h2 {
    color: #fff;
    font-size: 24px;
    font-weight: normal;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .2em;
    margin: 0 0 23px 0;
}

.inputFields {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    color: #fff;
    border-top: 1px solid black; /* #fe9772 */
    /* border-bottom: 1px solid black; /* #9f593f; */
    font-size: 24px;
    letter-spacing: .05em;
    list-style-type: none;
    text-shadow: 1px 1px 1px black; /*#9f593f; */
    /* height: 50px; This stopped the word length from expanding */
    padding-left: 1em;
    padding-top: 10px;
    padding-bottom: 10px;
}

.inputError {
    color: red;
    text-align: right;
    font-size: 18px;
    font-weight: normal;
    padding-right: 10px;
    text-shadow: none;
}

/* www.w3schools.com/css/css_form.asp */
/* border-box keeps input & select at equal size */
select, input[type=text] {
    padding-left: 5px;
    font-size: 18px;
    width: 100%;
    box-sizing: border-box;

}

button[type=button] {
    padding-left: 0px;
    font-size: 18px;
    width: 90%;
    box-sizing: border-box;
    margin-left: 30px;
}

input[type=text]:focus {
    border: 2px solid lightblue;
}

/*
.wrapper {
    display: grid;
    /*grid-template-columns: 200px 200px 200px;
    grid-template-columns: repeat(3, 1fr); /*1fr 1fr 1fr; /* fr = fraction of available space. Can
    mix px with fr: ie. 500px 1fr 1fr;
    grid-auto-rows: 100px;
}

.box1 {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
    border: 1px solid #666;
}

.box2 {
    grid-column-start: 1;
    grid-row-start: 3;
    grid-row-end: 5;
    border: 1px solid #666;
} */