body{
    margin: 0;
    padding: 0;
}
footer{
    margin-top: 40px;
    background-color:#00246B;
}
.FooterContainer{
    width: 100%;
    padding: 20px 0px 0px;
}
.Icons{
    display: flex;
    justify-content:center;
}
.Icons a{
    text-decoration: none;
    padding: 10px;
    background-color: white;
    margin: 10px;
    border-radius: 50%;

}
.Icons a i{
    font-size: 2em;
    color: black;
    opacity: 0.9;
}
.Icons a:Hover{
    background-color: #111;
    transition: 0.5s;
}
.Icons a:hover i{
    color: white;
    transition: 0.5s;
}
.FooterNav{
    margin:0px 0px;
}
.FooterNav ul{
    display: flex;
    justify-content: center;
}
.FooterNav ul li a{
    color: white;
    margin: 20px;
    text-decoration: none;
    font-size: 1.3em;
    opacity: 0.7;
    transition: 0.5s;
}
.FooterNav ul li a:hover{
    opacity: 1;
}
.FooterBottom{
    background-color: #00246B;
    padding: 10px;
    text-align: center;
}
.FooterBottom p{
    color: white;
}

