*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --black: rgb(0, 0, 0);
    --background: #ffffff;
}
body {
    background-color: var(--background);
}
.social-link i {
    margin: 0 10px;
    color: #ffffff;
}

.navbar-top {
    position: relative;
    z-index: 1000; /* Increase the z-index value */
    width: 100%;
    height: 10vh;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: space-between;
    border-bottom: 1px solid white; /* Corrected border property */
}
.container .navbar-top .icon i img {
    margin-left: 10px;
    cursor: pointer;
    width: 50px;
}

.container .navbar-top .logo h3 {
    color: rgb(255, 255, 255);
}

#navbar-color {
    background-color: var(--background);
    color: rgb(0, 0, 0);
}

.navbar-nav {
    margin: auto;
    position: relative;
    z-index: 1000; 
}

.nav-link {
    margin-left: 30px;
    font-weight: bold;
    color: rgb(255, 255, 255);
    transition: 0.5s ease;
    cursor: pointer;
}

.nav-link:hover {
    color: aliceblue;
}

@media screen and (max-width: 400px) {
    .logo h3 {
        font-size: 18px;
        font-weight: bold;
    }
    i img {
        margin-left: 10px;
        cursor: pointer;
        width: 20px;
    }
    .container .navbar-top .icon i img {
        width: 75px;
    }
}
body{
    background-color: var(--background);
    color: rgb(0, 0, 0);

}
.card-img-top{
    border-radius: 50px;
    padding: 20px;
}
.card{
    border-radius: 30px;
    border: 1px solid grey;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}
.card-body {
    padding: 25px;
    margin-top: -15px;
}
 
.btn-primary{
    background-color: rgb(0, 0, 0);
    border: 1px solid rgb(0, 0, 0);
   
    }
.btn-primary:hover{
    background-color: black;
    border: none;
        }


        h3,h5  a{
            color: rgb(0, 0, 0);
            text-decoration: underline;
                    }



        h3,h4,h5  input{
                        color: rgb(0, 0, 0);
                        text-decoration: underline;
                    }
        h4{
            text-decoration: underline;
        }

        p{
                color: rgb(0, 0, 0);
            }
   
 
.btn-primary:focus, 
.btn-primary:active, 
.btn-primary:focus:active {
    outline: none;
    box-shadow: none;
    background-color: #2c0025; /* Change this to your desired color */
    border-color: #2d002d; /* Change this to your desired color */
}

