body{
    background-color: green;
    font-family: 'Roboto', sans-serif;
}
header, h1,h2,h3,h4{
    font-family: 'Acme', sans-serif;
}
main{
    font-size: 20px;
}
/* Header Styles */
header{
    width: 100%;
    position: fixed;
    top:0px;
    left: 0px;
    margin: 0px;
    padding: 5px;
    background: #147101;
    border-bottom: #077901;
    box-shadow: 0 0 10px 0 #000;
    color: white;
    z-index: 100;
}
header div.row-userInfo, header div.row-siteInfo{
//    outline: 1px dotted red;
}
header div.row-siteInfo{
    display: flex;
    margin-top: 1vmin;
    justify-content: space-between;
}
header div.row-userInfo>div{
    display: inline-block;
    margin: 2px 3vw;
    font-size: 30px;
}
header div.row-siteInfo>div, header div.row-siteInfo>h1{
    display: inline-block;
    margin: 2px 3vw;
}
/*Hamburger Menu*/
#Ham{
    cursor: pointer;
    box-sizing: border-box;
    padding-top: 9px;
    z-index: 100;
}
.bar1, .bar2, .bar3{
    width: 5vw;
    min-width: 35px;
    height: 6px;
    background-color: black;
    margin: 6px 0;
    transition: 0.4s;
}
    /* Rotate first bar */
    .bar1.change{
      -webkit-transform: rotate(-45deg) translate(-9px, 6px) ;
      transform: rotate(-45deg) translate(-9px, 8px) ;
    }

    /* Fade out the second bar */
    .change.bar2 {
      opacity: 0;
    }

    /* Rotate last bar */
    .change.bar3 {
      -webkit-transform: rotate(45deg) translate(-8px, -8px) ;
      transform: rotate(45deg) translate(-8px, -8px) ;
    }


/*DropDown Menu*/
header nav{
    //margin-top: 20px;
    text-size: 20px;
    border-top: 1px solid black;
}
header nav li{
    text-align: center;
    margin: 7px 0px;
}
header nav li a{
    color: white;
    text-decoration: none;
}
.pageTitle{

}
.siteLogo{

    text-align: right;
}
.siteLogo a{
    color: inherit;
    text-decoration: none;
}
header div.row-userInfo>div.balance{
    float: right;
}

/*Main Styles*/
#OneCenteredGroup, #TwoSections{
    position: relative;
    top: 200px;
}
#OneCenteredGroup{
    width: 95%;
    max-width: 492px;
    margin: auto;
    text-align: center;
    overflow: hidden;
}
#OneCenteredGroup p{
    font-size: 20px;
    text-align: justify;
    background: white;
    border-radius: 20px;
    padding: 16px 26px;
    box-shadow: 1px 1px 4px 2px rgba(89,89,89,1);
}
#OneCenteredGroup p:after{
content: '';
position: absolute;
border-style: solid;
border-width: 29px 15px 0;
border-color: #FFFFFF transparent;
display: block;
width: 0;
z-index: 1;
left: 100px;
margin-top:10px;
}
#OneCenteredGroup #TalkerTurtle{
    width: 100px;
    float: left;
    margin: 15px 0px;
}
#OneCenteredGroup #Inputs{
    float: right;
    width: calc(100% - 120px);

}
#OneCenteredGroup #Inputs input{
    width: 100%;
    max-width: 212px;
    margin: 10px 0px 10px 0px;
    float: right;

}
#OneCenteredGroup #Inputs input[type='submit'], #OneCenteredGroup #Inputs select,#OneCenteredGroup #Inputs .fauxButton {
    width: calc(100% + 10px);
    max-width: 220px;
    float: right;
    margin: 10px 0px 10px 0px;
}
@media screen and (max-width: 350px){
    #OneCenteredGroup #Inputs{
        width: calc(100% - 95px);
    }

    #OneCenteredGroup #TalkerTurtle{
        width: 75px;
    }
    #OneCenteredGroup p:after{
        left: 65px;
    }
}
@media screen and (max-width: 300px){
    #OneCenteredGroup #Inputs{
        width: 100%
    }

    #OneCenteredGroup #TalkerTurtle{
        display: none;
    }
    #OneCenteredGroup #Inputs input{
        float: none !important;
    }
    #OneCenteredGroup p:after{
        display: none;
    }
}

.clear{
    clear: both;
}
#TwoSections section, #OneCenteredGroup{
    box-sizing: border-box;
    background-color:#02c41c;
    box-shadow: 0px 0px 16px 5px rgba(89,89,89,1);
    border-radius: 5px;
    padding: 14px;
}

#TwoSections{
    width: 95%;
    max-width: 900px;
    margin: auto;
}
#TwoSections section{
    box-sizing: border-box;
    display: block;
    width: 47.5%;
    float:left;
    text-align: center;
    background-color:#02c41c;
    box-shadow: 0px 0px 16px 5px rgba(89,89,89,1);
    border-radius: 5px;
    padding: 20px;
}
#TwoSections section:first-child{
    margin-right: 5%;
}
#TwoSections section:nth-child(2){

}
#TwoSections section h4{
    text-align: center;
    margin-top: 0px;
}
#TwoSections section p{
    text-align: justify;
}
@media screen and (max-width: 750px) and (min-height: 560px){
    #TwoSections{
        width: 100%;
    }
    #TwoSections section{
        float: none;
        width: 95%;
        max-width: 450px;
        margin: auto;
    }
    #TwoSections section:first-child{
        margin-right: auto;
        margin-bottom: 2vh;
    }

}
@media screen and (max-width: 600px){
    #TwoSections{
        width: 100%;
    }
    #TwoSections section{
        float: none;
        width: 95%;
        max-width: 450px;
        margin: auto;
    }
    #TwoSections section:first-child{
        margin-right: auto;
        margin-bottom: 2vh;
    }
    #TwoSections section p, #OneCenteredGroup p{
        font-size: 16px;
    }
}
/*Misc*/
#body{
    position: relative;
    top: 200px;
}
*:focus {
    outline: none;
}
h1, h2, h3{
    color: white;
    text-align: center;
}
h3{
    font-size: 20px;
}
h1{
    font-size: 68px;
}
h2{
    font-size: 32px;
}
input, select{
    margin: 10px 16px;
}
.fauxButton{
    display: inline-block;
    text-decoration: none;
    margin: 100px 16px 10px    ;
    line-height: 40px;
    text-align: center;
}
input[type=button], input[type=submit], input[type=reset], .fauxButton{
    background-color: black;
    color: white;
    height: 40px;
    width: 220px;
    font-weight: bold;
    border: 1px solid white;
    cursor: pointer;
    border-radius: 6px;
    -webkit-appearance: none;
}
input[type='text'],input[type='email'],input[type='password'], input[type=number]{
    border: 2px solid black;
    height: 32px;
    width: 212px;
    padding-left: 5px;
}
input:disabled,
input[disabled]{
    color: #828282;
    background-color: #3C3C3C;
}
select, option{
    background-color: black;
    color: white;
    height: 40px;
    width: 220px;
    font-weight: bold;
    border: 1px solid white;
    text-align: right;
    padding-right: 20px;
}
select option:disabled{
    color: #525252;
}
span.alert{
    color: red;
}
.hidden{
    visibility: hidden;
    display: none !important;
}
.hidden2{
    display: none;
}
.invisible{
    visibility: hidden;
}
@media screen and (max-width: 500px), screen and (max-height: 450px){
    h3{
        font-size: 16px;
    }
    h1{
        font-size: 7vmin;
        //color: red;
    }
    h2{
        font-size: 18px;
    }
    .row-userInfo{
        font-size: 5vmin;
    }
    .row-siteInfo{
        //font-size: 10vmin;
    }
    header .ham{
        padding-top: 0;
    }
    header div.row-userInfo>div{
        //color: red;
        font-size: 6vmin;
    }
    .bar1, .bar2, .bar3{
        height: 1.25vmin;
        margin: 1.25vmin 0;
    }
    .bar1.change{
      -webkit-transform: rotate(-45deg) translate(-2vmin, 3vmin) ;
      transform: rotate(-45deg) translate(-2vmin, 3vmin) ;
    }
    .change.bar3 {
      -webkit-transform: rotate(45deg) translate(-1vmin, -2vmin) ;
      transform: rotate(45deg) translate(-1vmin, -2vmin) ;
    }
    #body, #OneCenteredGroup, #TwoSections{
        top: 25vmin;
    }
}
