
/* NAVBAR */

    .cv-logo {
        width: 60px;
        height: 60px;
    }

    nav {
        position: fixed;
        top: 0;
        background-color: rgb(255, 255, 255);
        color: black;
        width: 100%;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 30px;
        z-index: 999;
    }

    nav ul {
        list-style: none;
        display: flex;
        justify-content: space-between;
        gap: 2rem;
    }

    nav ul a {
        text-decoration: none;
        color: rgb(0, 0, 0);
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
        font-size: 14px;
        height: 10px;
        border-bottom: 2px solid rgba(218, 165, 32, 0);
    }

    nav li:first-child {
        margin-right: auto;
    }

    nav ul li a:hover {
        border-bottom: 1.5px solid goldenrod;
        transition: all 0.6s ease;
    }

/* SIDEBAR */
    
    

/* FOOTER */
    
    .footer-hero {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        margin-top: 50px;
    }
    
    .footer-container {
        display: flex;
        list-style: none;
        gap: 1.5rem;
        justify-content: center;
    }

    .copy-paragraph {
        margin-bottom: 40px;
        font-family: poppins, sans-serif;
        font-size: 18px;
        font-weight: 400;
    }

    .footer-icons {
        margin-bottom: 5px;
    }


