.header > nav {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header__link {
    display: inline-flex;
    align-items: center;
    color:var(--color-white-first);
    font-size: 20px;
    font-family: var(--font-body);
    font-weight: 500;
    text-decoration: none;
    padding: 0.8rem 0;  
}

.header__link:hover {
    text-decoration: underline;
}

@media screen and (min-width: 1024px) {
    .header > nav {
        display: block;
    }
    
    .header__link {
        display: inline-flex;
        margin-right: 30px;  
    }
    
    .header__link::before {
    content:"";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--color-first);
    margin-right: 10px;
}
}