footer {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: auto;
    background-color: #15221c;
}

footer-content {
    padding: 75px 0px 75px 0px;
    width: 80vw;
    display: flex;
    justify-content: space-around;
}

footer-content h1 {
    margin-bottom: 8px;
    color: #c6c6c6;
    font-weight: 500;
    font-size: 21px;
    font-family: 'Noto Sans', sans-serif;
}

footer-content h2 {
    color: #6e6e6e;
    font-weight: 500 !important;
    font-size: 18px;
    font-family: 'Noto Sans', sans-serif;
}

footer-content h2:hover {
    color: #909090;
}

footer-content a {
    text-decoration: underline;
    text-decoration-color: #6e6e6e;
}

/* Footer options */
.footer-contact a{
    text-decoration: none;
}

/* Footer copyright */
footer-copyright {
    display: flex;
    justify-content: center;
    gap: 5px;
    width: 100vw;
    padding: 15px 0px 15px 0px;
    background-color: #111b16;
}

footer-copyright h2 {
    color: #7f7f7f;
    font-weight: 300;
    font-size: 16px;
    font-family: 'Noto Sans', sans-serif;
}

#copyright {
    color: #547b6b;
    text-decoration: underline;
    text-decoration-color: #547b6b;
}

/* Phone Display */
@media (max-width: 1100px) {
    footer-content {
        width: 25vw;
        gap: 25px;
        flex-direction: column;
    }
}