/*---------------------Header Section--------------------------*/
.header-container{
    position: relative;
    width: 100%;
    height: 10vh;
    background: #BBDEF4;
    font-size: 19px;
}

.header-container a{
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

.header-nav{
    display: flex;
    width: 84%;
    margin: auto;
    padding: 20px 0;
    align-items: center;
    justify-content: space-between;
}

.header-nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}

.header-nav ul li a:hover{
    color: darkblue;
}
/*---------------------Header Section--------------------------*/


/*---------------------Footer Section--------------------------*/
footer{
    background-color: #111;
    position: relative;
}

.footer-container{
    position: relative;
    padding: 50px 20px 50px;
}

.footer-nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-nav .social{
    transform: translate(-700%);
}

.footer-nav ul{
    display: flex;
    justify-content: center;
    list-style-type: none;
    width: 100%;
}

.footer-nav ul li a{
    color: white;
    margin: 20px;
    text-decoration: none;
    font-size: 1.15em;
    transition: 0.5s;
}

.footer-nav ul li a:hover{
    color:#BBDEF4;
}

.footer-bottom{
    background-color: #000;
    padding: 20px;
    text-align: center;
}

.footer-bottom p{
    color: white;
}
/*---------------------Footer Section--------------------------*/