

html {

    font-size: 10px;
    --jet: #323031;
    --cream: #FFF8E8;
    --waterMilk: #fff8e880;
    --oranj: #F2542D;
    --lightTeal: #0E9594;
    --darkTeal: #127475;
}

body {
    background-color: var(--jet);
    margin: 0;
}

#twelveGrid{

    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 20px;
}

.subgrid{
    display: grid;
    grid-template-columns: subgrid;
}

header{ 
    grid-column: 2/5;
}

h1, #logoH2{
    
    padding-left: 5%;
}

h1 {
    grid-column: 1/5;
    font-family: "Jaldi", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: white;
    font-size: 5.0em;
    margin-top: 10%;
    margin-bottom: 5%;
    background-color: var(--oranj);


}

#logoH2{
    grid-column: 1/5;
    font-family: "Kanit", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: white;
    font-size: 3.2em;

    margin-top: -1em;
    padding-top: 0;
    background-color: var(--oranj);

   
}

#leftSide{
    grid-column: 1/7;

}

#imgHolder, form{
    grid-column: 2/6;
}

.kanitXtraLight, input[type=text] {
    font-family: "Kanit", sans-serif;
    font-weight: 200;
    font-style: normal;
}

input[type=text] {

    grid-column: 1/6;
    padding: 2.5%;
    border: none;
    border-radius: 20px;

    font-size: 3.2em;

}

button{
    grid-column: 1/6;
    padding: 2.5%;
    border: none;
    border-radius: 20px;
    font-size: 3.2em;
    background-color: var(--lightTeal);

    margin-top: 2.5%;
    margin-bottom: 25%;

    font-family: "Kanit", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 3.2em;
    color: white;

    box-shadow: 5px 5px var(--darkTeal);

}



/* https://www.w3schools.com/cssref/tryit.php?filename=trycss3_box-shadow */

::placeholder{
    text-align: center;
}
/*
    mmm placeholder text
    https://stackoverflow.com/questions/7381446/center-html-input-text-field-placeholder
*/


#imgHolder img{
    grid-column: 1/5;
    object-fit: contain;
    width: 100%;
    height: 100%;

    margin-bottom: 5%;
}



#rightSide{
    grid-template-rows: subgrid;
    grid-row: 1/3;
    grid-column: 7/13;
    background-color: var(--cream);

    margin-bottom: -21px;


}

#rightText{
    grid-column: 1/6;
    grid-row-start: 2;

    padding-left: 10%;
    padding-bottom: 30%;
}

.kanitMedium{
    font-family: "Kanit", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: black;
}

#forGiveLoc{
    grid-column-start: 2;

    font-size: 3.0em;
}

#resultA, #laterTemp, #recommendation, #recNow{
    grid-column-start: 2;

    font-size: 4em;
}

footer{

    grid-column: 1/13;

}

footer hr{
    grid-column: 1/13;
    padding-top: 0;
    margin-top: 0;

    width: 100vw;
    border: 0.25em solid var(--cream);

}

footer p{

    grid-column: 1/13;

    font-size: 1.5em;
    color: var(--waterMilk);

    text-align: center;

}