@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');

body {
    animation: transitionIn 1s;
}

@keyframes transitionIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

a {
    color: blue;
    text-decoration: none;
}


img, svg {
    vertical-align: center;
}

ul {
    margin-top: 10px;
    margin-bottom: 1rem;
}

.nav-link {
    display: block;
    padding: 2rem;
    text-decoration: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
    color: black;
}

.nav {
    display: flex;
    font-size: 20px;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    text-align: center;
}

.justify-content-center {
    justify-content: left!important;
}

footer {
    grid-column:1/13;
    background-color: #fafaf9;
}
.padding-footer {
     padding-top: 20px;
     text-align: center;
}

