/*css reset*/

*{
    margin: 0;
    padding: 0;
}

/* css variables */

:root{
    --navbar-height: 59px;
}
/* navigation bar */

#navbar{

    display: flex;
    align-items: center;
    top: 0px;
    position:relative;
}

#navbar::before{
    content:"";
    background-color: rgb(47, 47, 166);
    position:absolute;
    top: 0px;
    left: 0px;
    height:100%;
    width: 100%;
    z-index:  -1;
    opacity: 0.9;
}

/* logo and image */

#logo{
    margin: 34px 45px;
}

#logo img {
    height: 80px;
    margin: 2px 5px;
}


/* navigation bar :list styling */


#navbar ul {
    display: flex ;
    font-family: 'Baloo Bhai',cursive;

}


#navbar ul li{
    list-style: none;
    /* color: white; */
    font-size: 3.3rem;

    
}

#navbar ul li a{
    color: white;
    display: block;
    margin: 20px;
    padding: 23px 50 px;
    border-radius: 20px;
    text-decoration: none;
}

#navbar ul li a:hover{
    color: black;
    background-color: white;
}
/* ===================================================================
 * # about
 *
 * ------------------------------------------------------------------- */
 @import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap');

.about-area{
    padding-top: 5%;
}
.about-img{
    position: relative;
}
.about-img:before{
    position: absolute;
    content: '';
    right: -30px;
    top: 30px;
    border: 9px solid rgba(255, 255, 255, 0.5);
    width: 100%;
    height: 100%;
}
.about-img img{
    width: 100%;
}
.about-text{
    padding-top: 20%;
}
.about-text h2{
    color: black;
    font-family: 'Poppins', sans-serif;
    font-size: 50px;
}
.about-text p{
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
    color: black;
}
.about-text a{
    background: #b5a7f8;
    color: #fff;
    padding: 7px 15px;
    display: inline-block;
    margin-top: 20px;
}

body {
    background-color: #EDEDED !important;
}

/* Style footer */
footer {
    position: relative;
    bottom: 0;
    width: 100%;
    height: 20% ;
    text-align: center;
    padding: 1em 0;
    background-color: rgba(15, 0, 0, 0.7);
    text-decoration-color: bisque;
  }

footer p #footer-year{
     /* font-style: white ; */
     font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
     font-size: 14px;

}
