*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
body{
    background: #080808;
    color: #fff;
    min-height: 100%;

}
#header{
    width: 100%;
    height: 100vh;
    background-image: url(Images/nbg.jpg);
    background-size: cover;
    background-position: center;
}
.container{
    padding: 1opx 10%;
}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo{
    width: 140px;
}

nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}

nav ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    position: relative;

}
nav ul li a::after{
    content: '';
    width: 0;
    height: 3px;
    background: #ff004f;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}
nav ul li a:hover::after{
    width: 100%;
}
.header-text{
    margin-top: 20%;
    font-size: 80px;
    position: top;
}
.header-text h1{
    font-size: 60px;
    margin-top: 20px;
}
.header-text h1 span{
    color: #ff004f;
}
/*-------About Pay attetion Keith----- */
#about{
    padding: 80px;
    color: #ffffff;
    text-align: center;
    font-size: 30px;
    font-weight: 300;
    line-height: 30px;
    margin-bottom: 20px;
    /* margin-top: 20px; */
    border-bottom: 1px solid #e5e5e5;
    /* border-top: 1px solid #e5e5e5; */
}
.row{
    display: flex;
    /* justify-content: space-between; */
    flex-wrap: wrap;
}
#about p{
    font-size: 28px;
    font-weight: 300;
    line-height: 40px;
    color: white;
    margin-bottom: 20px;
    margin-top: 30px;
    padding-right: 50px;
    padding-left: 50px;
    border-bottom: 1px solid #ff0000;
    border-top: 1px solid #55ff00;
    padding-bottom: 20px;
}
.about-col-1{
    flex-basis: 35%;
    padding: 20px;
    margin-bottom: 20px;
}
.about-col-1 img{
    width: 100%;
    border-radius: 15px;
}
.about-col-2{
    flex-basis: 50%;
    text-align: center;
    padding: 20px;
    word-spacing: 5px;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    display: inline-block;
}

.sub-title{
    font-size: 75px;
    font-weight: 600;
    color: #fff;
}

.tab-titles{
    display: flex;
    margin: 20px 0 40 px;
}
.tab-links{
    margin-right: 50px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    position: relative; 
}
.tab-links::after{
    content: '';
    width: 0;
    height: 3px;
    background: #ff004f;
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.5s;
}

.tab-links.active-link::after{
    width: 50%;
}

.tab-contents ul li{
    list-style: none;
    margin: 10px 0;
}
.tab-contents ul li span{
    color: #b54769;
    font-size: 14px;
}
.tab-contents{
    display: none;
}
.tab-contents.active-tab{
    display: block;

}

/*----About the church---*/
#services{
    padding: 30px 0;
}
.services-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 50px;
}
.services-list div{
    background: #262626;
    padding: 40px;
    font-size: 20px;
    line-height: 2;
    font-weight: 300;
    border-radius: 10px;
    transition: background 0.5s, transform 0.5s;
}
.services-list div i{ 
    font-size: 50px;
    margin-bottom: 30px;
}
.services-list div h2{
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px;
}
.services-list div a{
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    margin-top: 20 px;
    display: inline-block;
}
.services-list div:hover{
    background: #ff004f;
    transform: translateY(-10px);
}
/*---portfolio---*/
#portfolio{
    padding: 50px 0;
}
.work-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 50px;
}
.work{
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.work img{
    width: 100%;
    border-radius: 10px;
    display: block;

}
/* .services-list p {
    font-size: 15px;
    font-weight: 300;
    justify-content: center;
} */
#verse p{
    font-size: 200p;
}

footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color:#fff;
    background-color: #000;
    border-bottom: 7px solid #ff0000;
    border-top: 7px solid #55ff00;
    font-size: 15px;
    font-weight: 300;
    line-height: 20px;
    margin-bottom: 20px;
    width: 100%;
    min-height: 5%;
    display: flex;
    position: bottom;
    margin-top: 30px;
    margin-left: 0px;
    margin-right: 0px;
    padding: 10px;
}


.prayer div { 
    font-size: 50px;
    margin-bottom: 30px;
}