            body{
                background-color: #f0f8ff;
                font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
                /*text-align: center;  - needed in index.html to v6.html maybe perform javascript when you learned it */ 
                padding-top: 120px;
            }

            h1{
                color: #2c3e50;
                font-size: 40px;
            }

            p{
                color: #34495e;
                font-size:18px;
            }

            button{
                background-color: #3498db;
                color: white;
                font-size: 16px;
                border: none;
                border-radius: 5px;
                cursor: pointer
            }

            button:hover{
                background-color: #2980b9;
            }

            .navbar{
                background-color: #2c3e50;
                padding: 15px 30px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
            }

            .logo{
                color: white;
                font-weight: bold;
                font-size: 24px;
            }

            .nav-links a {
                color: white;
                text-decoration: none;
                margin-left: 20px;
                font-weight: 50px;
            }

            .nav-links a:hover{
                color: #3498db;
            }


            .content-container{
                display: flex;
                justify-content: center;
                align-items: center;
                max-width: 1000px;
                margin: 0 auto;
                padding: 20px;
                gap: 50px;
            }

            .text-column{
                flex: 1;
                text-align: left;
            }

            .image-column img{
                max-width: 100%;
                height: auto;
                border-radius: 10px;
                box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            }

            body.dark-theme{
                background-color: #1a252f;
            }

            body.dark-theme h1{
                color: #ecf0f1;
            }

            body.dark-theme p{
                color: #bdc3c7;
            }

            body.dark-theme .navbar{
                background-color: #11171d;
            }


            .contact-section{
                max-width: 500px;
                margin: 50px auto;
                padding: 30px;
                background-color: white;
                border-radius: 10px;
                box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            }

            .contact-section h2{
                color: #2c3e50;
                margin-bottom: 20px;
            }

            #contact-form input, #contact-form textarea{
                width: 100%;
                padding: 12px;
                margin-bottom: 15px;
                border: 1px solid #ccc;
                borer-radius: 5px;
                font-family: inherit;
                box-sizing: border-box;
            }

            body.dark-theme .contact-section{
                background-color: #2c3e50;
            }
            body.dark-theme .contact-section h2{
                color:white;
            }

            .skills-section{
                max-width: 1000px;
                margin: 50px auto;
                padding: 20px;
            }

            .skills-section h2{
                color: #2c3e50;
                text-align:center;
                margin-botom: 30px;
            }

            .skills-grid{
                list-style: none;
                padding: 0;
                display: flex;
                justify-content: center;
                gap: 20px;
                flex-wrap: wrap;
            }

            .skills-grid li {
                background-color: white;
                color: #2c3e50;
                padding: 20px 40px;
                border-radius: 8px;
                font-weight: bold;
                box-shadow: 0 40px 10px rgba(0,0,0,0.05);
                transition: transform 0.2s;
            }

            .skills-grid li:hover {
                transform: translateY(-5px);
                background-color: #3498db;
                color:white;
            }

            body.dark-theme .skills-section h2{
                color: white;
            }

            body.dark-theme .skills-grid li{
                background-color: #2c3e50;
                color: white;
            }

            body.dark-theme .skills.grid li:hover{
                background-color: #3498db;
            }



            /*MOBILE*/
            @media (max-width: 768px){
                .content-container{
                    flex-direction: column;
                    text-align:center;
                    gap:30px;
                }
                
                .text-column{
                    text-align: center;
                }

                h1{
                    font-size: 32px;
                }

                .navbar{
                    padding: 15px 15px;
                }
            }