*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Poppins', 'Lobster Two', sans-serif;
    height: 100vh;
    position: relative;
    overflow-x: hidden;
    background-color: #a5345afb;
}

nav{
    padding: 15px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, .95);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
}

nav h3{
    font-family: 'Lobster Two', sans-serif;
    color: white;
    font-weight: 600;
}

ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.wrap ul{
    display: flex;
    justify-content: space-between;
}

.wrap ul li{
    padding-left: 15px;
    color: white;
}

.toggle{
    padding: 2px;
    display: none;
    align-items: center;
    justify-content: center;
}

.toggle button{
    border: none;
    border-radius: 5px;
    background-color: transparent;
}

#intro{
    padding: 20px 5px;
    display: flex;
    justify-content: space-between;
    background-color: white;
    margin-top: 65px;
    

}

.intro-wrap{
    width: 55%;
}

.intro-wrap h3{
    padding: 10px 5px;
}
.intro-wrap h3 > span{
    color: #e85c9dfb;
    font-size: 30px;
    font-weight: 600;
}
.intro-wrap p{
    padding-left: 5px;
    padding-bottom: 10px;
    font-weight: 400;
}

.link-cont{
    padding-left: 5px;
    margin-top: 10px;
}

.link-cont a{
    text-decoration: none;
    background-color: rgb(9, 138, 231);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-block;
}
.link-cont a:hover{
    background-color: rgba(9, 138, 231, .7);
    transform: translateY(-5px);
    transition: all 1s ease-in-out;
}

.cover-wrap{
    width:40%;
    height: 300px;
    border-radius: 5px;
}

.cover-wrap .cover-image{
    width: 100%;
    height: 100%;
}
.cover-image img{
    width: 100%;
    height: 100%;
    border-radius: 2px 10px 2px 10px;
}
.carousel-item{
    height: 100%;
}
.post-feature, .follow-feature, .chat-feature{
    border-radius: 10px;
    box-shadow: 1px 2px 5px;
}
.post-feature .text, .follow-feature .text, .chat-feature .text{
    width: 40%;
}
.post-feature h4, .follow-feature h4, .chat-feature h4{
    color: #e85c9dfb;
    font-size: 20px;
    font-weight: 600;
    padding-top: 25px;
}
#followFeatureSlides .image > img, #postFeatureSlides .image > img, #chatFeatureSlides .image > img{
    width: 100%;
    height: 100%;
    display: inline-block;
    border-radius: 10px;
    border: 2px solid white;

}

/* about section style */
#about{
    background-color: aliceblue;
}
#about > h4{
    font-weight: 600;
}
#about > h4 span{
    color: #e85c9dfb;
    font-weight: 600;
}
.story-team{
    display: flex;
    justify-content: space-between;
}

.story-team .story-cont{
    width: 55%;
    padding: 25px 15px;
    border-radius: 10px;
    box-shadow: 2px 1px 3px black;
}
.story-team .story-cont p{
    line-height: 30px;
    font-size: 12px;
}
.story-team .story-cont p span{
    color: #e85c9dfb;
    font-weight: 600;
}
.story-team .team{
    width: 40%;
}
.story-team .team h3{
    padding: 0;
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}
.story-team .team .profile-wrapper{
    padding: 15px 10px;
    border: 2px solid #e85c9dfb;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}
.story-team .team .profile-wrapper > .picture-cont img{
    width: 100%;
    height: 100%;
    display: inline-block;
    border-radius: 5px;
}
.story-team .team .profile-wrapper > .intro-cont{
    padding: 10px 0;
}
.story-team .team .profile-wrapper > .intro-cont h5{
    font-size: 18px;
    font-weight: 600;
    color: #e85c9dfb;
}
.story-team .team .profile-wrapper > .intro-cont p{
    margin: 0;
    padding: 0;
    line-height: 25px;
    font-size: 12px;
}
.story-team .team .profile-wrapper > .intro-cont p span{
    color: #e85c9dfb;
    font-weight: 600;
}
footer{
    background-color: black;
    padding: 20px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer .copy{
    width: 40%;
    color: white;
}

footer .project-links{
    width: 55%;
    display: flex;
    flex-direction: column;
    padding: 20px 10px;
}
footer .project-links a{
    text-decoration: none;
    color: white;
    font-size: 12px;
}

footer p{
    font-size: 12px ;
}

.social-links{
    display: flex;
    justify-content: space-around;
    padding: 15px;
}
.social-links a{
    text-decoration: none;
}

@media screen and (max-width: 595px) {
    .wrap{
        display: none;
    }
    .toggle{
        display: flex;
    }
    #intro{
        flex-direction: column;
        margin-top: 70px;
    
    }
    
    .intro-wrap{
        width: 100%;
        margin-bottom: 15px;
    }

    .cover-wrap{
        width: 100%;
    }
    .post-feature, .follow-feature, .chat-feature{
        display: flex;
        flex-direction: column;
    }
    .post-feature .text, .follow-feature .text, .chat-feature .text{
        width: 100%;
    }
    .story-team{
        flex-direction: column;
    }
    .story-team .story-cont{
        width: 100%;
    }
    .story-team .team{
        width: 100%;
    }
    .story-team .team h3{
        padding-top: 20px;
    }
}