
@import url('https://fonts.googleapis.com/css2?family=Cinzel&family=Lato:wght@300;400;700&family=Nunito:wght@200;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Karla:wght@200;400;500;600;700&family=Montserrat:wght@400;700&family=Open+Sans:wght@400;700&family=Poppins:wght@200;300;400&family=Roboto:wght@400;700&family=Rubik&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;500;600;700&display=swap');
:root{
    --pink-light: rgb(254 130 177);
    --pink-dark: rgb(182 122 144);
    --text-color: rgb(58, 53, 57);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

html{
    scroll-behavior: smooth;
    height: 100vh;
    font-family: 'Urbanist', sans-serif;
}
body{
    height: 100%;
}

.sub_body{
    height: 100%;
    width: 100%;
    background: rgb(245, 240, 253);
    position: relative;
    background-attachment: fixed;
    overflow: hidden;
}
main{
    position: relative;
    z-index: 99;
    opacity: 0.1;
    animation: fade 1.2s ease forwards;
}
@keyframes fade{
    from{
        opacity: 0.1;
    }
    to{
        opacity: 1;
    }
}
.sub_body::after{
    content: "";
    background-image: url("/img/noise-transparent.png");
    height: 300%;
    width: 300%;
    opacity: .6;
    position: fixed;
    left: -50%;
    top: -100%;
    /* mix-blend-mode: overlay; */
    visibility: visible;
    z-index: 0;
}
.body_overlay{
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 0;
}
.c-blur{
    height: 500px;
    width: 500px;
    background-color: rgb(253, 203, 210);
    border-radius: 50%;
    position: absolute;
    top: 10%;
    left: 10%;
    filter: blur(100px);
    opacity: .7;
}
.c-blur1{
    animation: pulse 10s linear infinite;
}
.c-blur2{
    background-color: rgb(191, 229, 253);
    left: 30%;
    top: 40%;
    height: 400px;
    width: 400px;
    filter: blur(60px);
    mix-blend-mode: color-burn;
    opacity: .6;
    animation: pulse 10s linear infinite reverse;
}
.c-blur3{
    background-color: rgb(231, 192, 148);
    left: 80%;
    top: -20%;
    width: 500px;
    height: 500px;
    opacity: .6;
}
header{
    position: relative;
    z-index: 80;
}
.nav_link{
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: rgb(77, 67, 76);
    transition: all .5s ease;
}
.nav_link:hover, .nav_active{
    color: var(--pink-light);
}
/* main{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
} */
.container{
    width: 100%;
    height: 100%;
    position: relative;
    padding: 0;
}
.project-wrapper{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 99;
    /* padding: 0 20%; */
}

.p-list li{
    width: 100%;
    display: flex;
    flex-direction: row;
    position: relative;
    align-items: center;
}
.p-item{
    font-family: 'Urbanist', sans-serif;
    font-size: 4rem;
    display: block;
    padding: 4rem 0;
    color: transparent;
    -webkit-text-stroke: 1.5px #3b3b3d;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .8s ease;
}
.p-item:hover{
    color: #3b3b3d;
    /* color: rgb(182 122 144); */
}
.p-item:hover + .p-circle{
    transform: scale(1);
    opacity: 1;
}
.p-item-active{
    color: #3b3b3d;
}
.p-circle{
    width: 70%;
    height: 0;
    padding-bottom: 70%;
    background-color: black;
    border-radius: 50%;
    position: absolute;
    transform: scale(0);
    opacity: 0;
    transition: all .8s ease;
}
.circle1{
    right: -60%;
    background-image: url("/img/noise-transparent.png"), url("../img/homerge.jpg");
    background-position: center;
    background-size: 400%;
}
.circle2{
    left: -100%;
    background-image: url("../img/BG.jpg");
    background-position: center;
    background-size: 200%;
}
.circle3{
    right: -90%;
    background-image: url("/img/noise-transparent.png"), url("../img/noise.jpg");
    background-position: center;
    background-size: 200%;

}