        :root{
        --bg-color:#050621;
        --select-color:#0506213a;
        }

        * {
            margin: 0;
            padding: 0;
        }

        body {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            font-family: "Poppins", Arial, sans-serif;
        }

        section {
            display: flex;
            height: 90vh;
            width: 80%;
            box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
        }

        section .contact-wrapper {
            width: 50%;
        }

        section .contact-wrapper form {
            width: 100%;
            height: 100%;
            display: flex;
            background-color: var(--bg-color);
            gap: 20px;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        section .direct-contact-container {
            width: 50%;
            padding: 20px;
            color: var(--bg-color);
            position: relative;
        }

        section .contact-wrapper form input,
        textarea {
            padding: 10px;
            width: 80%;
            font-size: 1.1em;
            border: none;
            outline: none;
            font-family: "Poppins", Arial, sans-serif;
            background: transparent;
            color: white;
            border-bottom: 1px solid rgba(255, 255, 255, 0.4);
        }

        section .contact-wrapper form textarea::placeholder {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1em;
        }

        section .contact-wrapper form input::placeholder {
            color: rgba(255, 255, 255, 0.8);
        }

        .contact-wrapper h2 {
            width: 85%;
            color: white;
            font-weight: 500;
        }

        button#send {
            border-radius: 5px;
            background-color: white;
            border: none;
            width: 60%;
            color: var(--bg-color);
            padding: 8px 16px;
            font-family: "Poppins", Arial, sans-serif;
            font-weight: 500;
            font-size: 1.3em;
            text-transform: uppercase;
            cursor: pointer;
            box-shadow: 0 6px 1px 0 rgb(228, 228, 228);
            transition: all .2s ease;
        }

        button#send:hover {
            box-shadow: none;
            /* background-color: var(--bg-color); */
            /* color: white; */
        }

        textarea {
            resize: none;
        }

        h2 {
            text-transform: uppercase;
        }

        .direct-contact-container hr {
            height: 1px;
            width: 30%;
            background-color: var(--bg-color);
        }

        .direct-contact-container p {
            color: rgba(0, 0, 0, 0.4);
        }

        .details {
            margin-top: 20px;
            height: auto;
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .details div {
            width: 100%;
            display: flex;
            font-size: 16px;
            justify-content: space-around;
            align-items: center;
        }

        .details div i {
            height: 40px;
            width: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 10px;
            font-size: 1.6em;
            color: var(--bg-color);
            border-radius: 100px;
            border: 1px solid rgba(48, 132, 131, 0.2);
        }

        .details div span {
            color: var(--bg-color);
        }

        .details p {
            width: 80%;
        }

        .details a {
            text-decoration: none;
            color: rgba(0, 0, 0, 0.4);
        }

        .details a:hover {
            text-decoration: underline;
        }

        .links {
            position: absolute;
            bottom: 15px;
            left: 0;
            display: flex;
            justify-content: space-around;
            align-items: center;
            width: 100%;
        }

        .links a {
            height: 20px;
            width: 20px;
            padding: 20px;
            display: flex;
            text-decoration: none;
            justify-content: center;
            align-items: center;
            font-size: 1.6em;
            border-radius: 100px;
            color: var(--bg-color);
            box-shadow: 0 0 20px 0px #0506211f;
            transition: all .3s ease;
        }

        .links a.facebook:hover {
            background-color: #3c5898;
            color: white;
        }

        .links a.twitter:hover {
            background-color: #1DA1F2;
            color: white;
        }

        .links a.linkedin:hover {
            background-color: #0A66C2;
            color: white;
        }

        .links a.instagram:hover {
            background-image: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
            background-size: 100%;
            background-repeat: repeat;
            color: white;
        }

        @media screen and (max-width: 800px) {
            body {
                height: auto;
                padding: 10px;
            }

            section {
                flex-direction: column;
                height: auto;
                gap: 20px;
            }

            section .contact-wrapper {
                width: 100%;
            }

            section .contact-wrapper form {
                width: 100%;
                height: 70vh;
            }

            section .direct-contact-container {
                width: 100%;
                height: 60vh;
                padding: 0;
            }

            .direct-contact-container .content {
                padding: 10px;
            }
        }

        @media screen and (max-width: 480px) {
            section {
                width: 100%;
            }

            section .direct-contact-container {
                height: 80vh;
            }

            .details {
                justify-content: center;
                align-items: center;
            }

            .details div {
                width: 100%;
            }

            .details p {
                width: 70%;
            }

            .details div i {
                padding: 5px;
            }

            section .contact-wrapper form {
                height: 80vh;
            }
        }