*{
    text-decoration: none;
}

*,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
}

@font-face {
    font-family: Biko;
    src: url(Biko_Regular.otf);
}
@font-face {
    font-family: Lemon Milk;
    src: url(LEMONMILK-Regular.otf);
}

/* header css start */
.header {
    padding: 10px 0 0 0;
}

.navbar {
    background: #ffffff; 
    font-family: Biko;
    border: 2px solid #005691;
    border-radius: 70px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 10px 20px 10px 20px;
    margin:30px;
}

.navdiv {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    padding-top: 5px;
    padding-left: 10px;
}

li {
    list-style: none;
    display: inline-block;
    color: #005691;
    padding: 10px 20px 10px 20px;
}

a:not(.active):hover{
    color: #005691;
}
.active{
    color: #E84B33;
}   
.unactive{
    color: #A6D0D9;
}

.active-work{
    color: #E84B33;
}   
.unactive-work{
    color: #0a0a0a;
}
.active-work{
    color: #005691;
    font-weight: bolder;
}
/* WORK BAR CSS */

.project-option{
    display: flex;
    justify-content: center;
    border-top: 1px solid #005691;
    border-bottom: 1px solid #005691;
    margin-left: 20%;
    margin-right: 20%;
    margin-bottom: 30px;

    font-family: "Public Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 10pt;
}

.project-option li {
    list-style: none;
    display: inline-block;
    color: #005691;
    padding: 10px 45px;
}

.project-txt h1 {
    font-family: Lemon Milk;
    font-weight: 400;
    text-align: center;
    color: #005691;
    margin-top: 50px;
    margin-bottom: 30px;
}
/* work bar css end */

/* works preview css start */
.works-preview {
    display: grid;
    gap: 50px;
    grid-template-columns: auto auto;
    justify-content: center;
    padding: 20px 20px;
    margin: 20px 20px;
}
@media (max-width: 800px) {
    .works-preview {
        grid-template-columns: auto;
    }
  }
/* works preview css end */

/* footer css start */
.footer {
    background: #005691;
    justify-content: center;
    align-items: center;
    border: 3px;
    padding: 30px 0 10px 0px;
}

.footer-logo {
    display: flex;
    justify-content: center;
}

.icon-socmed {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 10px 0 10px 0;
}

.icon-socmed a {
    padding: 10px;
}

p {
    color: #ffffff;
    font-family: "Public Sans", sans-serif;
    font-weight: 400;
    font-size: small;
    font-style: italic;
    padding-bottom: 20px;
    text-align: center;
}