*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

.bold{
    font-weight: bold;
    font-size: 1.3rem;
}

nav{
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: rgb(10 88 157);
    /* background-color: white; */
    color:white;
    align-items: center;
}

nav a {
    color: white;
    font-weight: bold;
    font-size: 2rem;
}

nav ul{
    display: flex;
    list-style-type: none;
    gap: 2rem;
}

footer{
    display: flex;
    /* justify-content: space-around; */
    /* background-color: rgb(8, 10, 85); */
    background-color: rgb(10 88 157);
    color: rgb(190, 190, 190);
    padding: 20px;
    flex-wrap: wrap;
    gap: 2rem;
}

footer ul{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style-type: none;
}

footer ul .bold{
    color: white;
}

footer .footer-social i{
    font-size: 1.5rem;
    margin-right: 10px;
}

.footer-social{
    list-style-type: none;
}

footer .footer-social a{
    color: rgb(214, 201, 201);
}