:root {
            --nutri-dark-green: #14321b;
        }

        body {
            margin: 0;
            background-color: var(--nutri-dark-green);
            color: #ffffff;
            font-family: 'Inter', sans-serif;
            overflow: hidden;
        }

        /* Full screen section */
        .split-bottom {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            
        }

        /* Brand name */
        .brand-text {
            font-family: 'Playfair Display', serif;
            font-size: 7.0rem;
            font-weight: 900;
            letter-spacing: 4px;
            margin-bottom: 2rem;
        }

        /* Slogan */
        .slogan-main {
            font-size: 2.0rem;
            font-weight: 300;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .slogan-sub {
            font-size: 2.5rem;
            font-weight: 500;
            margin: 0;
        }
		.img-logo{
			  height:15%;
			  width:15%
		}

        /* Button */
        .btn-outline-light {
            border-width: 2px;
            letter-spacing: 1px;
			background:#C2A343;
			border-color:#C2A343
        }

        /* Mobile */
        @media (max-width: 768px) {
            .brand-text {
                font-size: 3.8rem;
                letter-spacing: 2px;
            }

            .slogan-main {
                font-size: 1.7rem;
            }

            .slogan-sub {
                font-size: 2.2rem;
            }
			.img-logo{
			  height:35%;
			  width:35%
			}
        }