/*  Header  */
header {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0.5rem 1rem 0.5rem 1rem;
    text-align: center;}

.header-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.header-links a {
    color: #233554;
}
 /* header home */
.logo-svg {
    height: 3em;
    vertical-align: middle;
}
.home:hover {
    color: #39578a;
}

.github-svg {
    fill: #233554;
    width: 33px;
    height: 33px;
}
.github-svg:hover {
    fill: #39578a;
    transition: all 0.5s ease;
}
.linkedin-svg {
    fill: #233554;
    width: 28px;
    height: 28px;
}
.linkedin-svg:hover {
    fill: #39578a;
    transition: all 0.5s ease;
}

