* {
    margin: 0;
    padding: 0;
}


.nav-box {
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0, 39, 82, 0.85), rgba(15, 30, 50, 0.85)), url(bg.jpg);
    ;
    /* background-image:url("bg.jpg") ; */
    background-size: cover;
    background-position: center;






}

nav {
    display: flex;
    width: 90%;
    margin: auto;
    padding: 35px 0;
    justify-content: space-around;
    align-items: center;


}

.logo-box {
    display: flex;
    margin-top: -35px;
}

.logo-box p {
    margin-top: 20px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 35px;
    padding: 5px;
    color: brown;
    transition: all 0.7s;
    font-weight: 800;
    cursor: pointer;
}

.logo-box p:hover {
    -webkit-text-stroke: 2px #000;



}

.logo-box img {
    width: 100px;
    cursor: pointer;
}

nav ul {
    margin-top: -35px;
}

nav ul li {
    list-style-type: none;
    display: inline-block;
    margin: 0 20px;
    font-size: 28px;
    text-decoration: none;

    position: relative;
}

nav ul li a {
    font-size: 28px;
    padding: 15px;
    color: #fff;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-decoration: none;
    transition: all 0.5s;


}


nav ul li a:hover {
    -webkit-text-stroke: 2px brown;

}

/* imp for decoration  */

nav ul li::after,
.active:after {
    content: "";
    height: 5px;
    width: 0%;

    background: brown;
    position: absolute;
    left: 10px;
    bottom: -4px;
    transition: 0.6s;


}

nav ul li:hover::after,
.active:after {
    width: 85%;
}

.content {
    width: 100%;
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    text-align: center;
    color: black;

}

.title {
    font-size: 100px;
    line-height: 100px;
    font-weight: 600;
    height: 100px;
    color: #fff;
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;


}

.content p {
    margin: 20px auto;
    font-weight: 150px;
    line-height: 30px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 22px;
}

button {
    padding: 15px 25px;
    margin: 15px;
    font-size: 20px;
    letter-spacing: 1px;
    border: 2px solid brown;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(to left, transparent 50%, brown 50%);
    background-size: 200%;
    background-position: right;
    transition: 0.9s ease-in-out;
    border-radius: 13px;



}

button:hover {
    background-position: left;
    color: #000;
    border: 2px solid #000;
    transform: skew(10deg);
}


/* imp for decoration  */
.slider {
    color: brown;
    margin-left: 12px;
    box-sizing: border-box;
    animation: text-slider 5s linear infinite;
}

@keyframes text-slider {
    0% {
        margin-top: -400px;
    }

    5% {
        margin-top: -200px;
    }

    30% {
        margin-top: -200px;
    }

    35% {
        margin-top: 0px;
    }

    65% {
        margin-top: 0px;
    }

    70% {
        margin-top: 200px;
    }

    100% {
        margin-top: 200px;
    }


}