@font-face {
    src: url(Fonts/Mukta-Regular.ttf);
    font-family: mukta;
}
@font-face {
    src: url(Fonts/Mukta-SemiBold.ttf);
    font-family: muktaBold;
    font-weight: heavy;
}
@font-face {
    src: url(Fonts/Quicksand-VariableFont_wght.ttf);
    font-family: quicksand;   
}
@font-face {
    src: url(Fonts/ComforterBrush-Regular.ttf);
    font-family: brush; 
    font-weight: heavy;  
}
@font-face {
    src: url(Fonts/Merriweather-Black.ttf);
    font-family: Mb; 
    font-weight: heavy;  
}
@font-face {
    src: url(Fonts/Merriweather-BlackItalic.ttf);
    font-family: MbI; 
    font-weight: heavy;  
}
@font-face {
    src: url(Fonts/Merriweather-Bold.ttf);
    font-family: MbB; 
    font-weight: heavy;  
}
@font-face {
    src: url(Fonts/Merriweather-BoldItalic.ttf);
    font-family: MbBI; 
    font-weight: heavy;  
}
@font-face {
    src: url(Fonts/Merriweather-Italic.ttf);
    font-family: MI; 
    font-weight: heavy;  
}
@font-face {
    src: url(Fonts/Merriweather-Regular.ttf);
    font-family: Merriweather; 
    font-weight: heavy;  
}
*{
    box-sizing: border-box;
    font-family: quicksand;
}

html,body{
    background-color: #0b1d3b; 
    /*background-image: url(Images/header3.jpg);*/
    margin: 0;
    padding: 0;
}
.nav ul{
    margin: 0;
}
.nav li{
    font-family:mukta;
    display: inline;
    font-weight: bold;
}
.nav a{
    display: inline-block;
    padding: .5em;
    color:lightgoldenrodyellow;
    text-decoration: none;
}
.nav a:hover{
    background-color: #0b1d3b;
}
.main-nav{
    text-align: right;
    font-size: larger;
    font-weight: bold;
    font-family: muktaBold;
}
.main-nav li{
    padding: 0 1%;
}
.main-header{
    background-image: url(Images/header3.jpg);
    background-blend-mode: saturation;
    background-size: cover;
    padding-bottom: 50px;
}
.projects-header{
    background-image: url(Images/blurred\ header.jpg);
    background-blend-mode:hard-light;
    background-size: cover;
    padding-bottom: 50px;
}
.background-img{
    background-image: url(Images/header3.jpg);
}
.title-page{
    text-align: center;
    font-size: 4em;
    font-family: muktaBold;
    color: goldenrod;
}
.subtitle{
    text-align: center;
    font-size: 3em;
    font-family: mukta;
    color: goldenrod;
}
.content-section{
    margin: 1em;
}
.container{/*this class is to ensure the button stays in the right frame throughout*/
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5em;
}
.container2{/*this class is to ensure the button stays in the right frame throughout*/
    max-width: 100%;
    min-height: 100vh;
    padding-left: 8%;
    padding-right: 8%;
    box-sizing: border-box;
    overflow: hidden; 
    color: goldenrod;
}
.pfp-image{
    display:block;
    margin: 0 auto;
    width:100%;
    height:100%;
    border-radius: 50%;
    border-width: 30px;
    border: 5px solid goldenrod;    
}
.quote{
    display:flex;
    margin: 0 auto;
    max-height: 100px;
    max-width: 505px;
    text-align:justify;
    font-family: MbI;
    font-size: 2.1em;
    color:  goldenrod;
}
.credit{
    text-align: center;
    margin: 0 0;
    font-size:1em;
    color:  bisque;
}
.main-footer{
    background-color:bisque;
    /*color: white;*/
    padding: .25em .25em;
}
.main-footer-container{
    display: flex;
    align-items: center;
}
.main-footer-container ul{
    flex-grow: 1;
    text-align: center;
}
.footer-nav img{
    width: 44px;
    height: 44px;
}
.footer-nav a:hover{
    background-color: #6699CC;
}

.header{
    background-image: url(Images/header3.jpg);
    background-blend-mode: saturation;
    background-size: cover;
    padding-bottom: 50px;
}
.bttn{
    color: maroon;
    vertical-align: middle;
    cursor: pointer;
    font-family: mukta;
    font-size: 1em;
    background-color: rgb(241, 212, 217) ;
    border-radius:30px; 
    border-color: transparent;
    max-width:60%;
    transition: .4s;
    padding: 9px 22px;
}
.bttn:hover{
    background-color:blanchedalmond;
}

.box{
    display: flex;
    flex-wrap: wrap;/*This allows the content to be wrapped if there's not enough space*/
    justify-content: center;
    align-items: center;
}
.box2{
    display: flex;
    justify-content: center;
    align-items: center;
}
.card{
    height: 300px;
    width: 335px;
    padding: 20px 20px;
    background: #6699CC;
    border-radius: 10%;
    margin: 15px;
    position: relative;
    overflow: hidden;
    text-align: justify;
}
.card-title{
    font-family: muktaBold;
    font-weight:bold;
    font-size: 25px;
    text-align: center;
    color: #FFD1DC;
}
.card-content{
    color: blanchedalmond;
    font-weight: 5px;
    font-family:Quicksand;
}
.shrink{
    transition: .7s ease;
}
.shrink:hover{
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
}

.grow{
    transition: .7s ease;
}
.grow:hover{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
}
.main-project-pic{
    margin: 2cm auto;
    display: block;
    height: auto;
    width: 15cm;
    border-radius:1%;
    border: 3px solid #6699CC;
}
.project-headings h2{
    font-size: xx-large;
    font-family: muktaBold;
    color: goldenrod;
    display:flex;
    text-align: center;
    /*background-color: blanchedalmond;*/
}

.project-headings h1{
    font-size: xx-large;
    font-family: muktaBold;
    color: navy;
    display:flex;
    text-align: center;
    background-color: #6699CC;
}

.project-headings li{
    color:  #FFD1DC;
    font-size: 1.1em;
    text-align: left;
    font-family: Quicksand;
}
.parent{
    text-align: center;
}
.child{
    display: inline-block;
    vertical-align: middle;
    margin: 2.5em 5em;
}

.text-box{
    margin-left: 3.5cm;
    margin-right: 3.5cm;
}

.image-box{
    margin-left: 3.5cm;
    margin-right: 2cm ;
}

.project-headers{
    text-align: center;
    font-family: muktaBold;
    color: goldenrod;
    /*background-color: rgb(213,220,220);*/
    margin: 0 22em;
}
.justify-center-text{
    text-align:justify;
    font-size: 1.1em;
    color: #FFD1DC;
    font-family: quicksand;
}
.caption{
    font-family: mukta;
    justify-content: left;
    font-size: large;
    color: #FFD1DC;
}
.img-collection{
    /*background-color:#6699CC;*/
    margin: 0;
}
.project-pic-left-align{
    height: 350px;
    width: 350px;
    float: left; 
    margin: auto 5px;
    border: 3px solid black;
}
.project-pic-right-align{
    height: 350px;
    width: 450px;
    float: right; 
    margin: auto 5px;
    border: 3px solid black; 
}

.figure{
    display: block;
    margin: 50px;
    padding: 5px;
}

.figcaption{
    font-family: mukta;
    text-align: center;
    font-size: large;
    color: #FFD1DC;
}
