footer {
            display: flex;
            align-items: center;
            flex-direction: column;
            background-color: black;
        }
        .contact {
            width: 100%;
            display: flex;
            flex-direction: column;
            color: white;            
            padding: 10px;
        }
        .separator {
            display: flex;
            align-items: center;
            text-align: center;
            font-size: 20px;
            font-weight: 600;
        }
        .separator::before,
        .separator::after {
            content: '';
            flex: 1;
            border-bottom: 1px solid gray;
            margin: 0px 2em;
        }
        .socials {
            display: flex;
            gap: 100px;
            justify-content: center;
            padding-top: 10px;
        }
        .socials img {
            width: 50px;
            filter: invert(1);
        }
        footer > img {
            width: 200px;
        }
        .about-us {
            width: 100%;
            display: flex;
            justify-content: center;
            padding: 20px 50px;
            gap: 20%;
        }
        .about-us a {
            text-decoration: none;
            white-space: nowrap;
            font-size: 16px;
            color: rgb(82, 82, 255);
        }
        .about-us a:hover {
            text-decoration: underline;
        }
        .about-us a:active {
            color: red;
        }