*{
    margin: 0;
    padding: 0; 
}
/*The css should generally fall into the same order as the html from top to bottom*/
/*These html and body tags allow us to detect the height of the browser*/
html, body {
    height: 100%;
    font-family: arial;
}
/*Variables for Document*/
:root{
    --royalpurple: #522E91;
    --gracefulgreen: #2fb52f;
    

}

/*fonts used currently 
 font-family: aaux-next, sans-serif;

 font-family: adage-script-jf, sans-serif;



*/

#container{
    min-height: 100%;  
}

#main {
    /*Gives us a scroll bar*/
    overflow: auto;
    padding-bottom: 150px;
    transition: height 1.5s;
    
    
}

/*visualizing the grid 
.grid div:nth-child(even) {
    background-color:#63208A;

}

*/
/*css grid styling*/
.grid{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 150px 560px 900px;
}

.loading_screen{
    grid-row: 1/4;
    grid-column: 1/2;
    background-color: #ffffff;
    opacity: 1;
    display: grid;
    grid-template-rows:  140px 440px 30px 160px;
    grid-template-columns: 1fr;
    z-index: 3;
    transition: opacity 1s;
}

.load_img{
    width: 430px;
    grid-row: 2/3;
    grid-column: 1/2;
    justify-self: center;
    opacity: 0;
    align-self: start;
    animation-fill-mode: both;
    animation-duration: 1.0s;
    animation-name: loadIn;
    animation-delay: 1s;
    transition: opacity 1s;
}


.load_title{
    font-style: aaux-next, sans-serif;
    font-weight: 800;
    font-style: normal;
    grid-row: 3/4;
    grid-column: 1/2;
    justify-self: center;
    align-self: center;
    text-align: center;
    color: var(--royalpurple);
    opacity: 0;
    transition: margin-left .5s, font-size 1.5s, opacity 1s;
    animation-fill-mode: both;
    animation-duration: 1.0s;
    animation-name: loadIn;
    animation-delay: .9s;
}


.load_p{
    font-family: aaux-next, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 26px;
    text-align: center;
    grid-row: 4/5;
    grid-column: 1/2;
    opacity: 0;
    animation-fill-mode: both;
    animation-duration: 1.0s;
    animation-name: loadIn;
    animation-delay: .7s;
    transition: opacity;
}

@keyframes loadIn {
    0% {
        opacity: 0;
        margin-top: -250px;

    }

    100% {
        opacity: 1;
        margin-top: 0px;
    }
}


@keyframes loadOut {
    0%{
    opacity: 1;
    margin-top: 0;

    } 
    
    100%{
        opacity: 0;
        margin-top: -250px;
    

    }


}

.header_section{
    grid-row: 1/2;
    grid-column: 1/2;
    display: grid;
    grid-template-columns: 150px 1fr;
    grid-template-rows: 1fr;
}

.logo{
    grid-column: 1/2;
    grid-row: 1/2;
    width: 130px;
    transition: width 1.5s;
    z-index: 2;
}

.logo img{
    z-index: 1;
}


.header{
    color: var(--royalpurple);
    margin-top: 10px;
    grid-column: 1/3;
    grid-row: 1/2;
    text-align: center;
    font-family: aaux-next, sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 70px;
    letter-spacing: 1px;
    margin-top: 15px;
    transform: scale(1, .9);
    transition: font-size 1.5s, margin-left 1.5s;
}

.video_hub{
    grid-row: 2/3;
    grid-column: 1/2;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 130px 400px;

}

.links{
    grid-column: 1/4;
    grid-row: 1/2;
    align-self: start;
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    color: black;
    z-index: 2;
    transition: font-size 1.5s;
    
}



.video{
    width: 60%;
    grid-row: 2/3;
    grid-column: 1/4;
    justify-self: center;
    align-self: center;
    transition: width 1.5s;
}




.org{
    grid-row: 1/2;
    grid-column: 1/2;
    color: #2fb52f;
    margin-top: -20px;
    border: 4px outset;
    transition: margin-top 1.5s, border 1.5s;
    
}

.org:hover{
    color: var(--gracefulgreen);
}

.wor{
    grid-row: 1/2;
    grid-column: 2/3;
    border: 1px outset;
    transition: margin-top 1.5s, border 1.5s;
}

.wor:hover{
    color: var(--gracefulgreen);
    margin-top: -20px;
    border: 4px outset;
}

.eco{
    grid-row: 1/2;
    grid-column: 3/4;
    border: 1px outset;
    transition: margin-top 1.5s, border 1.5s;
 
}

.eco:hover{
    color: var(--gracefulgreen);
    margin-top: -20px;
    border: 4px outset;
}

.details{
    display: grid;
    grid-template-columns:1fr;
    grid-template-rows: 120px 400px 300px;

}

.details_header{
    grid-row: 1/2;
    grid-column: 1/2;
    align-self: center;
    color: #ffffff;
    text-align: center;
    background-color: var(--royalpurple);

}

.top_detail{
    grid-row: 2/3;
    grid-column: 1/2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 30px 1fr;
}

.top_p{
    grid-row: 1/2;
    grid-column: 1/3;
    justify-self: center;
    align-self: start;
    font-size: 30px;
    font-weight: 400;
    text-align: center;
    width: 80%;
    margin-top: -20px;
    transition: font-size 1.5s;
}

.det_icon{
    width: 250px;
    grid-row: 2/3;
    grid-column: 1/2;
    justify-self: end;
    align-self: center;
    margin-right: 70px;
    transition: width 1.5s, margin-right 1.5s;


}

.bot_p{
    width: 60%;
    justify-self: start;
    align-self:center;
    font-size: 26px;
    grid-row: 2/3;
    grid-column: 2/3;
    border: 3px solid var(--royalpurple);
    border-radius: 6px;
    text-align: center;
    margin-left: 40px;
    transition: width 1.5s, margin-left 1.5s, font-size 1.5s;
}


.bottom_detail{
    grid-column: 1/2;
    grid-row: 3/4;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
}

.project{
    grid-row: 1/2;
    grid-column: 1/2;
    align-self: center;
    justify-self: end;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 30px 200px 20px;
    margin-left: 300px;
    transition: margin-left 1.5s;
}

.project_header{
    font-size: 20px;
    grid-row: 1/2;
    grid-column: 1/2;
    align-self: center;
    justify-self: center;
    text-align: center;
}

.project img{
    grid-row: 2/3;
    grid-column: 1/2;
    justify-self: center;
    align-self: center;
    width: 200px;
}

.project p{
    font-size: 24px;
    text-align: center;
    grid-row: 3/4;
    grid-column: 1/2;
    justify-self: center;
    align-self: center;
    width: 60%;
    transition: width 1.5s;

}

.outreach{
    grid-row: 1/2;
    grid-column: 2/3;
    align-self: center;
    justify-self: start;
    display: grid;
    grid-template-rows: 30px 200px 20px;
    grid-template-columns: 1fr;
    margin-right: 300px;
    transition: margin-left 1.5s;

}

.outreach_header{
    font-size: 20px;
    grid-row: 1/2;
    grid-column: 2/3;
    align-self: center;
    justify-self: center;
    text-align: center;
}

.outreach img{
    grid-row: 2/3;
    grid-column: 2/3;
    width: 170px;
    justify-self: center;
    align-self: center;
    margin-left: 20px;
}

.outreach p{
    font-size: 24px;
    grid-row: 3/4;
    grid-column: 2/3;
    align-self: center;
    justify-self: center;
    text-align: center;
    width: 60%;
    transition: width 1.5s;
    
}










#footer {
    position: relative;
    /*sets the height of the footer*/
    height: 150px;
    /*This margin pushes the footer back up to being visible. Should be the same value as the height above */
    margin-top:-150px;
    clear: both;
}

.foot_grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 60px 1fr 20px;
}

.foot_grid h6{
    grid-row: 1/2;
    grid-column: 1/4;
    justify-self: center;
    align-self: center;
    font-size: 32px;

    font-family: adage-script-jf, sans-serif;
    font-weight: 600;
    font-style: normal;
    text-align: center;
}


.foot_social{
    padding-right: 12px;
    justify-self: center;
    grid-column: 1/4;
    grid-row: 2/3;
    
}


.Linked{
    display: inline-block;
    background-image: url(/Images/Icons/LinkedIn100.png);
    background-position: center;
    background-size: 75px 75px;
    background-repeat: no-repeat;
    width: 75px;
    height: 75px;
    margin-left: 30px;
    transition: background-size 2s ease-out;
}

.Linked:hover{
    background-size: 85px 85px;
}

.Insta{
    display: inline-block;
    background-image: url(/Images/Icons/Instagram100.png);
    background-size: 75px 75px;
    background-repeat: no-repeat;
    width: 75px;
    height: 75px;
    margin-right: 10px;
    transition: background-size 2s ease-out;
}

.Insta:hover{
    background-size: 95px 95px;
}

.Facebook{
    display: inline-block;
    background-image: url(/Images/Icons/Facebook100.png);
    background-size: 55px 55px;
    background-repeat: no-repeat;
    width: 55px;
    height: 55px;
    margin-bottom: 10px;
    margin-right: 30px;
    transition: background-size 2s ease-out;
    

}

.Facebook:hover{
    background-size: 85px 85px;
}

.contact{
    grid-column: 1/4;
    grid-row: 3/4;
    font-size: 16px;
    font-weight: 350;
    justify-self: center;
}

.contact p{
    text-align: center;
    font-family: aaux-next, sans-serif;
    font-weight: 400;
    font-style: normal;

}

/*
/////
///
/////
*/


@media screen and (max-width:1350px){
    
    
    .logo{
        width: 130px;
    }

    .header{
        font-size: 60px;
    }

}

/*
/////
///
/////
*/

@media screen and (max-width: 1290px){
   .grid{
    grid-template-rows: 160px 590px 900px;
   }
    

    .video_hub{
        grid-template-rows: 150px 400px;
    }


    .video{
        width: 80%;
    }

    
    .bot_p{
        font-size: 26px;
        width: 80%;
       } 

    .project{

        grid-template-rows: 30px 260px 20px;
        margin-left: 260px;

    }

    .project p{
        width: 100%;
    }

    .outreach{
        grid-template-rows: 30px 260px 20px;
        margin-right: 260px;
    }

    .outreach p{
        width: 100%;
    }



}


@media screen and (max-width: 1115px){

    .header{
        font-size: 50px;
        
    }

    .logo{
        width: 120px;
        
    }


}

/*
/////
///
/////
*/

@media screen and (max-width: 950px){
    
    .grid{
        grid-template-rows: 130px 470px 850px ;
    }
    
    .header{
        font-size: 40px;
    }

    .logo{
        width: 95px;
    } 

    .links{
        font-size: 24px;
    }

    .video_hub{
        grid-template-rows: 70px 400px;
    }

    .details{
        grid-template-rows: 80px 330px 300px;
    }

    .top_p{
        font-size: 20px;
        margin-top: 0px;
    }

    .det_icon{
        width: 200px;
    }

    .bot_p{
        width: 85%;
        font-size: 20px;
        margin-left: 0px;

    }

    .project{
        margin-left: 70px;
    }

    .outreach{
        margin-right: 70px;
    }

    


}

/*
/////
///
/////
*/

@media screen and (max-width: 840px){
    .header{
        font-size: 32px;
        margin-top: 20px;
    }

    .logo{
        width: 85px;
    }
}

/*
/////
///
/////
*/

@media screen and (max-width: 680px){
    
    .grid{
        grid-template-rows: 100px 470px 850px;
    }

    .logo{
        width: 75px;
    }
    
    .header{
        font-size: 26px ;
        margin-left: 45px;
    }


    .video_hub{
        grid-template-rows: 40px 400px;
    }

    .links{
        font-size: 20px;
    }

    .video{
        width: 90%;
    }

    .bot_p{
        width: 95%;
        font-size: 18px;
    }


}


/*
/////
///
/////
*/

@media screen and (max-width: 600px){
    .grid{
        grid-template-rows: 100px 350px 700px;
    }

    .links{
        font-size: 18px;


    }
    
    .video_hub{
        grid-template-rows: 50px 300px;

    }

    .video{
        width: 100%;
    }

    .header{
        font-size: 22px;
        margin-top: 10px;
        margin-left: 25px;
    }

    .logo{
        width: 65px;
    }

    .details{
        grid-template-rows:  50px 300px 300px;
    }

    .details_header{
        font-size: 24px;
    }

    .top_detail{
        grid-template-rows: 50px 1fr;
    }

    .top_p{
        font-size: 20px;
    }

    .det_icon{
        width: 150px;
        margin-right: 30px;
    }

    .bot_p{
        font-size: 16px;
        margin-left: -20px;
    }

    .project{
     margin-left: 40px;
     grid-template-rows: 30px 210px 30px;  
     
    }

    .project p{
        font-size: 18px;
    }

    .outreach{
        margin-right: 40px;
        grid-template-rows: 30px 210px 30px; 
    }

    .outreach p{
        font-size: 18px;
    }


}

