/*Master styles*/

*{
    margin: 0px;
    padding: 0px;
}

body{
    margin: 0px;
    font-family: 'Kiwi Maru', serif;
    
}

.container{
    display: grid;
    grid-template-columns: 1fr;
}

/*Navbar styles*/
.nav-wrapper{
    display: flex;
    justify-content: space-between;
    padding: 40px;
    
    
}

.leftSide{
    display: flex;
}

.nav-wrapper > .leftSide > div{
    margin-right: 20px;
    font-size: medium;
}

.nav-linkS{
    height: 22px;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.5s;
}

.nav-linkS a{
    color: rgb(177, 81, 177);
    text-decoration: none;
    transition: color .5s;
}

.nav-linkS :hover{
    border-bottom: 1px solid violet;
}

.nav-linkS a :hover{
    color: blueviolet;
}

.rightSide{
    text-decoration-color: rgb(16, 48, 26);
    font-size: 20px;
    font-style: italic;
    border-bottom: 1.5px solid rgb(52, 99, 52)
}

/*.active-nav-links {
    border-bottom: 1px solid black;
}

.active-nav-links a{
    border-bottom: 1px solid black !important;
}*/

/*Book Portfolio styles*/

.portfolio-items-wrapper{
    
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* grid-template-columns: repeat (auto-fill, minmax(186px, .3fr)); */
}

.single-item-wrapper{
    position: relative;
    
    margin: 10px 10px 10px 10px ;
}

.img-background{
    height: 350px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.img-text{
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding-left: 100px; 
    padding-right: 100px;
}

/*.logo{
    align-items: center;
}*/

 .subtitle{
    font-style: italic;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 600;
    color: black;
}

.img-text :hover{
    font-weight: 600;
    font-style: italic;
    font-family: cursive;
    font-weight: 600;
    transition: .5s;
    color: lightseagreen;

}

.img-darken{
    transition: 1s;
    filter: brightness(10%);
}

/*About Page Styles*/

.about-site{
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-image{
    width: 100%;
    height: 100vh;
    background-image: url(https://images.unsplash.com/photo-1584811643967-a4b023332dbf?ixid=MXwxMjA3fDB8MHxzZWFyY2h8N3x8Ym9vayUyMGJhY2tncm91bmR8ZW58MHx8MHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    overflow:hidden;
}

.glass-body{
    width: 50%;
    border-radius: 8px;
    /* background: white; */
    box-shadow:
    0 0.6px 14.3px rgba(0, 0, 0, 0.071),
    0 2.9px 25.9px rgba(0, 0, 0, 0.114),
    0 7.9px 34.6px rgba(0, 0, 0, 0.144),
    0 18.1px 40.9px rgba(0, 0, 0, 0.166),
    0 41.3px 47.5px rgba(0, 0, 0, 0.186),
    0 100px 80px rgba(0, 0, 0, 0.21)
  ;  
    backdrop-filter: blur(60px);
    margin-left: 380px;
    margin-top: 100px;
}

.glass-body h2{
    color: #ffffff;
    margin: 20px;
    font-weight: 500;
    border-bottom: 2px solid #ffffff;
    width: 30%;
    margin-bottom: 60px;
    font-family: 'Train One', cursive;
    
}

.glass-body p{
    color: #ffffff;
    margin: 20px;
    font-weight: 500;
    font-size: 20px;
    font-family: 'Roboto Mono', monospace;
}

.glass-body::after{
    content: '';
    position: absolute;
    bottom: 0%;
    left: 0%;
    height: 4px;
    width: 100%;
    background: rgb(235, 201, 174);
    transform: scale(0, 1);
    transition: .4s ease;
}

.glass-body:hover::after{
    transform: scale(1, 1);
}




/*Browse Page Styles*/

.backdrop{
    width: 100%;
    height: 100vh;
    background-image: url(https://i.pinimg.com/originals/ef/f0/ce/eff0ce83d3bc3018e10fb52bebf098ca.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    overflow:hidden;
}

.siteLogo{
    width: 100px;
    cursor: pointer;
    margin: auto;
    
}


.searchBar{
    color: #fbfcfd;
    padding: 10px 25px;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 20px;
    outline: none;
    cursor: pointer;
}


/* .butterflies img{
    width: 50px;
    animation: butterflies 7s linear infinite;
}

.butterflies{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    bottom: -70px;
}

@keyframes butterflies{
    0% {
        transform: translateY(0);
        opacity:0;
    }

    50% {
        opacity:1;
    }

    70% {
        opacity:1;
    }
    100% {
        transform: translateY(-80vh);
        opacity:0;
    }
}

.butterflies img :nth-child(1) {
    animation-delay: 2s;
    width: 25px;
}

.butterflies img :nth-child(2) {
    animation-delay: 1s;
}

.butterflies img :nth-child(3) {
    animation-delay: 3s;
    width: 20px;
}

.butterflies img :nth-child(4) {
    animation-delay: 4.5s;
}

.butterflies img :nth-child(5) {
    animation-delay: 3s;
}

.butterflies img :nth-child(6) {
    animation-delay: 2.5s;
    width: 35px;
}*/ 