.footer {
    background-color: #c45dd2;
    display: flex;
    flex-direction: column;
    height: 300px;
}

.footer > .footer-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.footer > .footer-nav > .links-wrapper {
        display: flex;
        width: 800px;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
    }
    
.footer > .footer-nav > .links-wrapper > .nav-link {
        width: 100px;
        text-align: center;
    }
    
.footer > .footer-nav.links-wrapper > .nav-link a {
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        color: lightgrey;
        text-decoration: none;
        transition: 0.5s;
    }
    
.footer > .footer-nav.links-wrapper > .nav-link a:hover {
        color: #272a3d;
        letter-spacing: 1.5px;
    
    }

.footer > .wide-footer-section {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.footer > .wide-footer-section > .footer-logo {
    display: flex;
    flex-direction: row;
}

.footer > .wide-footer-section > .footer-logo img{
    padding-left: 20px;
    width: 100px;
    align-items: cener;
}

.footer > .wide-footer-section > .footer-logo h1{
    padding-left: 20px;
    align-items: cener;
}

.footer > .wide-footer-section > .footer-text{
    display: flex;
    flex-direction: column;
    justify-content: left;
}

.footer > .wide-footer-section > .contact-info {
    display: flex;
    flex-direction: column;
    text-align: right;
    text-decoration: none;
    padding-right: 20px;
}

.footer > .wide-footer-section > .contact-info a {
    text-decoration: none;
}

.footer > .wide-footer-section > .copyright-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1.5rem;
}

.footer > .wide-footer-section > .copyright-wrapper h5{
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1.5rem;
}