* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    text-decoration: none;
    list-style-type: none;
}

:root {
    --primary-color: #000e17;
    --secondary-color: #fdc500;
}

h1 {
    font-size: clamp(1.5rem, 0.5579rem + 3.5468vw, 3.75rem);
}

body {
    background-color: var(--primary-color) !important;
}

.nav-link {
    font-family: monospace;
    letter-spacing: 1px;
    font-size: 18px !important;
}

.nav-link.active {
    color: #fdc500 !important;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}



.emm-abt, .me-abt{
    text-align: justify !important;
}



hr{
    height: 5px;
    border: none;
    width: 100%;
    background-color: white;
    margin-bottom: 20px;
}

.social-media{
    margin-bottom: 20px;
    & h3{
        color: var(--secondary-color) !important;
    }

    & .icons{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        & i {
            font-size: 30px;
            color: #fdc500 !important;
        }

        & i:hover {
            font-size: 30px;
            color: white !important;
            transform: scale(1.2);
        }
    }
}

.copy-rights{
    font-size: 12px;
}