/*!
    * name          stylesheet project_management
    * description   css stylesheet for project mangement website
    * homepage      www.wuri.vc/projects/
    * repository     github?
**/

@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Playfair+Display&display=swap');

html
{
    
    font-weight: 500;
    font-size: 18pxl;
    color: #546778;
}

body
{
    margin: 0;
    /*font-family: Georgia, Times, Serif, "Times New Roman";*/
    /*font-family: 'Nunito', sans-serif;*/
    
    font-family: Georgia, Charter, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
    
}



.navigation_bar
{
    font-weight: 600;
    display:grid;
    grid-template-columns: auto auto auto;
    /*grid-template-rows: 50px;*/
    padding: 0px;
    /*overflow: hidden;*/
    grid-gap: 5px;
    
}

.navigation_bar img
{
    
    float: right;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.navigation_bar a
{
   /*float: left;
    display: block;
    vertical-align: middle;
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: center;
    padding-right: 45px;
    padding-left: 45px;
    */
    padding: 20px;
    text-align: center;
    color: black;
    text-decoration: none;
}

.navigation_bar a:hover
{
    /*background-color: white;*/
    color: darkslategrey;
}

.content
{
    background-color: #ddd;
    height: 200px;
}

/* browser default*/
h2 {
  display: block;
  font-size: 1.5em;
  margin-top: 0.83em;
  margin-bottom: 0.83em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}

/* browser default*/
h3 
{
  display: block;
  font-size: 1.17em;
  margin-top: 0em;
  margin-bottom: 0em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}

/* browser default*/
h4 {
  display: block;
  font-size: 1em;
  margin-top: 0em;
  margin-bottom: 0em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}


.header
{
    color: black;
    padding-top: 20px;
    padding-bottom: 0px;
}



.header h3
{
    text-align: left;
    padding-left: 22.5%;
    width: 55%;
    font-size: 2.5em;
    font-weight: 500;
    background-color: white;
    text-transform: capitalize;
    
}

.header h4
{
    margin-top: .5em;
    margin-bottom: 1.5em;
    text-align: left;
    padding-left: 22.5%;
    width: 55%;
    font-size: 1.5em;
    font-weight: 500;
    color: grey;
    background-color: white;
    text-transform: capitalize;
}



.subheader 
{
    color: grey;
    text-align: left;
    padding-top: 0px;
    text-align: left;
    padding-left: 20%;
    font-size: 22;
    color: grey;
    background-color: black;
}

.footer 
{
    padding: 20px;
    margin-top: 50px;
    vertical-align: bottom;
    position: fixed;
    bottom: 10px;
    right: 10px;
}



.grid
{
    display: grid;
    grid-template-columns: auto ;
    padding: 0px;
    grid-gap: 0px;
    background-color: white;
    margin-bottom: 80px;
}

.grid_item
{
    padding-left: 22.5%;
    /*padding-bottom: 100%;*/
    color: black;
    width: 55%;
    /*height: 10000;*/
    font-family: serif;
    line-height: 1.8;
    text-align: left;
    font-size: 22;
    font-weight: lighter;

}




ul
{
    list-style-type: square;   
    text-align: left;
    line-height: 2;
    text-transform: capitalize;
}




.grid_item p
{
    white-space: pre-wrap;
    padding-left: 0%;

	margin-top:1rem;
	margin-bottom:0;
	margin-block-end:0;
  
}

.grid_item a
{
    color: black;
    text-decoration: none;
    
}

.grid_item a:hover
{
    color: darkslategray;
    
}


@media(min-width: 600px)
{
    p
    {
        font size: 1.25 rem;
        
    }
    
}

@media(max-width: 800px)
{
   .grid_item
    {
    padding-left: 5%;
    width: 90%;
    line-height: 1.4;
    text-align: left;
    font-size: 28;
    font-weight: lighter;
    line-height: 1.5;
    }

    .header h3
    {
    padding-left: 5%;
    width: 90%;
    }
    
    .header h4
    {
    padding-left: 5%;
    width: 90%;
    font-size: 1.5em;
    font-weight: 500;
    color: grey;
    background-color: white;
    
    }
    
    ul
{
    line-height: 1.75;
    font-size: .75em;
}
    
    
}







/* copywright Tijan Watt 2019 */