* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.body {
    background-color: #080808;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

/* navigation bar */
.navbar-inverse{
    background-color: black !important;
    border-color: none;
    font-size: 20px;
    font-weight: 500;
    /* height: 8vh !important; */
    padding: 10px !important;
}
.logo {
    width: 50px;
    height: 50px;
    margin-top: -20%;
}
.container-fluid{
    width: 80%;
    margin: auto;
}
.navbar-collapse ul li a::after {
    content: '';
    width: 0;
    height: 3px;
    background: #ff004f;
    position: absolute;
    left: 0;
    bottom: -3px;
    transition: 0.5s;
}
.navbar-collapse ul li a:hover::after {
    width: 100%;
}

.navbar-collapse ul li a:hover {
    text-decoration: none !important;
    color: #fff !important;
} 
.navbar-header{
    background-color: black !important;
}
.navbar-nav{
    background-color: black !important;
}
@media only screen and (max-width: 770px){
    .navbar-collapse ul li a::after{
        display: none;
    }
}

.img-gallery{
    width: 80%;
    margin: 100px auto 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
}
.img-gallery img{
    width: 100%;
    height: 40vh;
    cursor: pointer;
}
.img-gallery img:hover{
    transform: scale(0.8) rotate(-15deg);
    border-radius: 20px;
    box-shadow: 0 32px 75px rgba(68, 77, 136, 0.2);
}

.full-img{
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.9);
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
}
.full-img img{
    width: 90%;
    max-width: 500px;
}
.full-img span{
    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

/* footer */
.copyright{
    width: 100%;
    text-align: center;
    padding: 25px 0;
    background: #262626;
    font-weight: 300;
    margin-top: 15px;
}
.copyright p{
    font-size: 15px;
}
.copyright p i{
    color: #ff004f;
}

/* css for small screen */
@media only screen and (max-width: 600px){
    .copyright p{
        font-size: 12px;
    }
}