/*********************************************************************
    The basics.
*********************************************************************/

body
{
    font-family: 'proxima-nova', sans-serif;
    font-size: 16px;
    line-height: 26px;
    background-color: #535867;
	
}

.light
{
    background: #535867;   
}

.dark
{
	background: #3b3f4e;
}

article
{
    
    background-image:url('/img/penrosediagram.svg');
    background-repeat: no-repeat;
    background-size: 80% auto;
    background-position: 150%  0%;
    position: relative;
    height: 100%;
}

a
{
    color: #fff;
	text-decoration: none;
    transition: color 0.5s;
}

a:hover
{
    color: #e6fa68;
}

h1, h2, h3, h4, h5, h6
{
    font-family: 'proxima-nova-bold', sans-serif;
}

section
{
	padding-top:0;
}

/*********************************************************************
    Header.
*********************************************************************/
img.pagetitle
{
    max-width: 33%;
    min-width: 320px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

header h1
{
/*    text-transform: uppercase; */
    text-align: center;
    font-size: 120px;
    transition: font-size 0.5s;
    font-size: calc(50px + (180 - 50) * ((100vw - 250px) / (2000 - 250)));
    font-size: calc(30px + (70 - 30) * ((100vw - 250px) / (2000 - 250)));
    font-weight: bold;
}

header h1 a
{
    text-decoration: none;
}

/*
@media only screen and (max-width : 600px)
{
    header h1
    {
        font-size: 34px;
    }
}
*/

/*********************************************************************
  Footer.
*********************************************************************/

footer
{
	clip-path: polygon(100% 0, 100% 100%, 0% 100%, 0 33%);
	background-color: #3b3f4e;
    text-align: center;
}

/*********************************************************************
  Description
*********************************************************************/
.top
{
    display: flex;
    width:75%;
    margin: 0 auto;
}

.ppinfo
{
    display: block;
    font-size: 1em;
    max-width:50%;
	line-height: 24px;
	padding: 1em;
	text-align: justify;
	opacity:0.8;
}

@media only screen and (max-width: 900px) {

    .ppinfo {
        
        padding:1em 0.2em;
        max-width: 100%;
    }
    .top
    {
        flex-direction: column;
        width:90%;
    }
}
/*********************************************************************
  Discord button
*********************************************************************/
.join
{
	width:320px;
    margin-left: auto;
    padding-bottom: 1em;
    padding-top: 1em;
	display: inline-block;
    text-align: center;
}
.discordico
{
    max-width:50px;
    
    float:left;
}
.join a{
    font-family: 'proxima-nova-bold',sans-serif;
    display:inline-block;
    width:320px;
    padding:12px;
    background-color: #d2e268;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0, 0.7);
    color:#636b2d;
    font-weight: bold;
}
.join a:hover{box-shadow: 0 5px 12px rgba(0,0,0, 0.52);transition: all 0.1s;transform:scale(1.0333,1.0333);background-color: #e6fa68;color:#5b632b}
.join p{
    margin:0;
    padding-top:0.7rem;
    font-size: 1.5em;
   
    
}


@media only screen and (max-width: 900px) {

    .join
    {
        margin:0 auto;
    }
    .join a 
    {
        width:100%;
    }
  }



/*********************************************************************
  Grid
*********************************************************************/
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-gap: 1rem;
    width:75%;
    margin: 0 auto;
}

@media only screen and (max-width: 500px) {

    .grid-container {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        width:90%;
    }
  }

/*********************************************************************
    Project Cards
*********************************************************************/

.project
{
    background-color: rgb(59, 63, 78, 0.95);
	border-style: solid;
    border-width: 1px;
    border-color: #6d727e;
    padding: 1em;  
    
 }

 .project:hover
 {
    background-color: rgba(50, 54, 66, 0.95);
    transition: background-color 500ms ease-in-out;
    box-shadow: 0 5px 12px rgba(0,0,0, 0.52);transition:transform ease-in-out 0.1s;transform:scale(1.0333,1.0333);

 }
.project p
{
	margin:0;
}

img.responsive
{
	max-width: 33%;
	display: block;
    margin-left: none;
    margin-right: 1em;
	float:left;
}

.pTitle 
{
	font-size:1.4em;
	font-weight:600;
	line-height:1em;
}
.pDescription
{
	font-size:1em;
	font-weight:400;
}


