
  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #edf2fc;
            --secondary-color: #212121;
        }

        .dark-theme {
            --primary-color: #000106;
            --secondary-color: #fff;
        }

        body {
            font-family: sans-serif;
             background: var(--primary-color);
            color: var(--secondary-color);
        }

        #icon {
            width: 30px;
            cursor: pointer;
            filter: var(--primary-color);
        }

        nav {
            background: var(--primary-color);
            width: 84%;
            margin: auto;
            padding: 10px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;

        }

        .container {
            width: 84%;
            margin: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            width: 100px;
            cursor: pointer;
        }

        nav ul {
            flex: 1;
            text-align: right;
        }

        nav ul li {
            display: inline-block;
            list-style: none;
            margin-top: 10px;
            margin: 0 20px;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--secondary-color);
        }

        .hero {
            height: 80vh;
            display: flex;
            flex-direction: column;
            
        }

        .info {
            margin-top: 15%;
            margin-left: 8%;
        }

        .info h1 {
             font-size: 70px;
             color: var(--secondary-color);
             margin-bottom: 20px;
        }

        span {
            color: #ff4321;
        }

        .info p {
            line-height: 22px;
        }

        .info a {
            background: var(--secondary-color);
            padding: 10px 18px;
            text-decoration: none;
            color: var(--primary-color);
            display: inline-block;
            margin: 30px 0;
            border-radius: 5px;
        }


        .img-box:hover .img-main {
            left: 54%;
        }

        .img-box:hover .img-back {
            bottom: 40px;
        }

        .social-links {
            position: absolute;
            bottom: 15px;
            right: 30px;
        }

        .social-links  {
            font-size: 30px;
            color: var(--secondary-color);
            margin-right: 20px;
            text-decoration: none;
        }

        /* .social-links a:hover { */
            /* color: #ff4321; */
        /* } */