header {
    width: 100%;
    background-color: transparent;
    position: fixed;
    top: 0;
    z-index: 99;
    transition: all 1s cubic-bezier(.21,.6,.35,1);
}

header.active {
    background-color: #fff;
}

header h2 {
    margin: 0;
}

header h1 {
    margin: 0;
    position: relative;
    font-size: 40px;
    color: white;
}

header.active h1 {
    color: black;
}

header a {
    color: black !important;
}

header a::after {
    display: none !important;
}

footer {
    background-color: #faf2e6;
    padding: 50px var(--padding) 70px;
}

footer .social-links {
    column-gap: 10px;
}

footer .social-links img {
    width: 40px;
    height: auto;
}

footer .copyright-text {
    font-size: 12px;
    opacity: 0.7;
}