#footer{
    background-color: var(--background);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 350px;
    position: relative;
    text-align: center;
}
.connect{
    color: var(--accent1);
    cursor: default;
}
.email{
    color: #fff;
    margin-top: 25px;
    line-height: 24px;
    cursor: default;
}
.email a{
    text-decoration: none;
    color: #fff;
}
.social-icons-container{
    display: flex;
    flex-direction: row;
}
.social-icons-container svg{
    fill: #fff;
    transition: all 0.5s;
    padding: 25px 10px 0;
}
.social-icons-container svg:hover{
    fill: var(--accent1);
    filter: drop-shadow(0 0 5px var(--accent1));
    transform: scale(1.2);
}
.copyright{
    background-color: var(--accent1);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    bottom: 0;
    height: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    cursor: default;
    text-align: center;
}