
 /*****----- PAGES -----*****/



.pageTitle {
    color: white;
    margin: 2%;
    position: absolute;
    top: 0;
    z-index: 5;
}

.txt {
    position: absolute;
    width: fit-content;
    z-index: 1;
    font-size: 21px;
}

.txtRear {
    color: rgba(255, 255, 255, 0.15);
    text-shadow: 2px 2px 3px rgba(255, 255, 255, 0.14);
}

.txtMid {
    color: rgba(255, 255, 255, 0.55);
    text-shadow: 1px 2px 8px rgba(255, 255, 255, 0.4);
}

.txtFront {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 10px rgba(255, 255, 255, 0.24);
}

.infoBanner {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 15px 0;
    width: 45vw;
    text-align: center;
    background-image: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.202), transparent);
}

/**----- HOME -----**/


.homePage {
    height: 99vh;
    background-image: linear-gradient(to bottom,var(--cHeader), var(--cFooter));   
    overflow-y: visible;
}

.banner {
    color: white;
    position: relative;
    top: 12rem;
}

.glass {
    padding: 3rem;
    background: linear-gradient(225deg, rgb(255, 255, 255, .2), rgb(255, 255, 255, 0));
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border-radius: 20px;
    box-shadow: -9px 15px 5px rgba(0, 0, 0, .37);
    z-index: 3;
}

#name {
    transform: skew(1px, 2px);
}

/**----- PROJECTS -----**/

.projectPage::before{
    content: " ";
    width: 100vw;
    height: 10rem;
    background-color: var(--background);
    transform: skewy(3deg);
    top: -6rem;
    box-shadow: 0 -11px 11px rgba(255, 255, 255, 0.25);
    z-index: 3;
    position: relative;

}

.projectPage {
    background-color: var(--background);
    z-index: 5;
}

.projectCard {
    color: black;
    margin: 5% 0;
    z-index: 10;
}

.card-img-top {
    height: 25vh;    
}

.card-text {
    min-height: 72%;
}

#center-card {
    margin-top: -7%;
    height: 105%;

}

.btn {
    position: absolute ;
    bottom: -10%;
    left: 25%;
    width: 50%;
}

/**----- ABOUT -----**/

.aboutPage {
    padding-top: 7rem;
    background-image: linear-gradient(to bottom,var(--cHeader), var(--cFooter));
}

.aboutContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    
}

.aboutImage {
    width: 200px;
    height: 170px; 
    filter: grayscale(10%);
    border-radius: 50% 50% 50% 50%;
    margin-bottom: 1%;
}

.abtList {
    display: flex;
    flex-direction: row;
    width: 90%;
    justify-content: center;
}

.abtItem {
    display: flex;
    flex-direction: column;
    margin: 0 2rem;
}

.abtItem dd {
    margin: 0 0;
}

.aboutSoon {
    color: lightsteelblue;
    font-weight: 500;
}

@media only screen and (min-width: 750px) {

}