/* Box Model Hack */
* {
     box-sizing: border-box;
}

/* Clear fix hack */
.clearfix:after {
     content: ".";
     display: block;
     clear: both;
     visibility: hidden;
     line-height: 0;
     height: 0;
}

.clear {
	clear: both;
}

/******************************************
/* BASE STYLES
/*******************************************/

body {

}

main{
    margin-left: 4%
}
/******************************************
/* LAYOUT
/*******************************************/
html{
    font-size: 62.5%;
}

header {
    
}

footer {

}
#holdEverything{
    display: flex;
}



/******************************************
/* ADDITIONAL STYLES
/*******************************************/
#listContainer{
    height:100%;
    width: 10%;
    display: flex;
    flex-direction: column;
}

a {
    display: flex;
    text-decoration: none;
    color: #777;
}

li{
    display: flex;
    list-style: none;
    padding-bottom: 18px;
    font-size:16px;
    font-family: 'Open Sans', sans-serif;
}


#logoPic { 
    display:flex;
    width:90px;
    height:90px;
    margin-left:30px;

}

#join{
    font-size: 1.2rem;
    color: #f6a623;
    font-family: 'Open Sans' ,sans-serif;
    font-weight: 700;
    padding-left: 10%;
}


#login{
    font-size: 17px;
    color: #777;
    margin-left: 40px;
    padding-bottom: 3rem;
    font-family: 'Open Sans',sans-serif;
}


#bigSection{
    display: flex;
    flex-direction: column;
}

#mainPic{
    display: flex;
    width:75%;
    height:350px
}


article{
    font-size: 22px;
    font-weight: bold;
    padding-bottom:5%;
    margin-right: 15%;
}

span{
    font-size: 12px;
}

h1{
    font-size: 3rem;
    padding-right:5%;
    font-weight:bold;
}


#bigSection > p{
    font-size: 14px;
    color: gray;
}


#lowerSection{
    display: flex;
    margin-right: 10%;
}

#lowerSection > h2{
    font-size: 2rem;
    padding-right: 5%;
}


#bigSection > h3{
    color:orange;
    font-size: 1.5rem;
}






