      /* General Styles */
        body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #282c34;
            color: #ffffff;
        }

        .page {
            display: none;
            height: auto;
        }

        .page.active {
            display: block;
        }
        .head{
          display: flex;
          align-items: center;
          position: fixed;
          background: #282c34;
        }
        .head img{
          border-radius: 50px;
          border: 1px solid #4E5BE7BF;
        }
        .head h3{
        }
        main{
          padding-top: 90px;
        }

        .container {
            padding: 10px;
            border: 2px solid #434ECB99;
            border-radius: 10px;
        }
       .preview {
            width: 100%;
            border: 2px solid #434ECB99;
            border-radius: 10px;
            height: auto;
        }
        h1 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #61dafb;
        }

        textarea {
            width: 100%;
            height: 200px;
            margin-bottom: 20px;
            border-radius: 5px;
            border: 1px solid #0015FF;
            
        }

        button {
            background-color: #61dafb;
            color: #282c34;
            font-size: 1rem;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            margin: 5px;
        }

        button:hover {
            background-color: #21a1f1;
        }
        button i{
          display: flex;
          flex-direction: row;
        }

        iframe {
            width: 100%;
            height: 400px;
            border: none;
            border-radius: 5px;
            background-color: white;
        }

        .terminal {
            width: 100%;
            height: 200px;
            background-color: #333;
            color: #eee;
            border-radius: 5px;
            padding: 10px;
            margin-top: 20px;
            display: none;
            overflow: auto;
        }

        .terminal.active {
            display: block;
        }
        .top-con{
           display: flex;
           align-items: center;
        }
        .top-con img{
          border-radius: 50px;
          border: 2px solid #3D32F899
        }
       footer {
         background-color: #20232a;
         color: #aaa;
         padding: 20px 10px;
         text-align: center;
         font-size: 14px;
         margin-top: 20px;
       }
       
       footer .footer-content {
         max-width: 800px;
         margin: auto;
       }
       
       footer p {
         margin: 5px 0;
       }
       
       footer strong {
         color: #61dafb;
       }
       
       footer .social-icons {
         margin-top: 10px;
       }
       
       footer .social-icons a {
         margin: 0 10px;
         color: #61dafb;
         text-decoration: none;
         font-size: 18px;
         transition: color 0.3s;
       }
       
       footer .social-icons a:hover {
         color: #21a1f1;
       }
       
       footer a {
         color: #61dafb;
         text-decoration: none;
         font-weight: bold;
       }
       
       footer a:hover {
         text-decoration: underline;
       }
       img{
         border-radius: 50px;
         border: 1px solid #4E5BE7BF;
       }