/* Desenvolvido por silvaprof */
/* silvaprof.github.io */


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #000;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            text-align: center;
            font-family: consolas;
            
        }


        /* Terminal */
        .terminal {
            background-color: rgba(22, 27, 34, 0.94); 
            border-radius: 8px;
            width: 1000px;
            max-width: 90%;
            box-shadow: 0 0 20px rgba(0, 255, 204, 0.3);
        }


        .terminal-header {
            background-color: #21262d;
            padding: 8px 12px;
            border-top-left-radius: 8px;
            border-top-right-radius: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
            position: relative;
        }



        .terminal-header .btn {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            display: inline-block;
        }

        .btn.red { background-color: #ff5f56; }
        .btn.yellow { background-color: #ffbd2e; }
        .btn.green { background-color: #27c93f; }

        .terminal-title {
            margin-left: auto;
            margin-right: auto;
            color: #8b949e;
            font-size: 0.9rem;
        }

        .terminal-body {
            padding: 20px;
            white-space: pre-wrap;
            line-height: 0.8;  /*Distancia entre linhas */
            font-family: 'Courier New', Courier, monospace;
            font-size: 1rem;
            color: #c9d1d9;
        }




        /* Imagem */
        img {
            width: 150px;
            border-radius: 50%;
            border: 3px solid #00ffcc;
            margin-bottom: 20px;
        }



        /* Foto em formato quadrado */
        .foto {
            width: 250px;
            height: 250px;
            background-size: cover;
            background-position: center;
            border-radius: 8px; 
            border: 3px solid #00ffcc;
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }

        #overlay {
            position: fixed;
            display: none;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            justify-content: center;
            align-items: center;
            z-index: 9999;
            cursor: pointer;
        }


        
        .foto:hover {
            transform: scale(1.05);
        }

        #overlay img {
            max-width: 90vw;
            max-height: 90vh;
            width: auto;
            height: auto;
            border-radius: 8px;
            border: 3px solid #00ffcc;
            box-shadow: 0 0 20px #00ffcc;
        }



        /* Textos */
        h1 {
            font-size: 2.5rem;
            color: #00ffcc;

        }

        p {
            margin: 10px 0 20px;
            color: #666;
            font-size: 0.9rem;
        }




        
        /* Escrevendo na tela */
        #typewriter, #description {
        color: #00ffcc;
        display: block;
        margin-bottom: 20px;

        }

        .cursor , #cursor_final {
            display: inline-block;
            color: #00ffcc;
            margin-left: 4px;
            animation: blink 0.7s steps(1) infinite;
        }

        @keyframes blink {
            50% {
            opacity: 0;
        }
        }



        /* Botões */

        .links a {
            display: inline-block;
            margin: 8px;
            padding: 10px 20px;
            background-color: #00ffcc;
            color: #000;
            text-decoration: none;
            border-radius: 30px;
            transition: background-color 0.3s;
        }

        .links a:hover {
            background-color: #00bfa6;
        }



        
        /* Fundo */
        canvas {
            position: fixed;
            top: 0; 
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -1;
            display: block;
        }




        /* Exibir na tela como comando terminal - paginas internas */
        .saida-comando {
            font-family: 'Courier New', Courier, monospace;
            line-height: 1.5; 
            color: #c9d1d9;
            text-align: left;



        }


        /* Linha de comando */
        .linha-comando {
            color: #00ffcc;
            margin-top: 0px;
            margin-bottom: 0px;
        }

        /* Folders simulando diretórios */
        .folder {
            color: #3fb950;
            font-weight: bold;
            text-align: left;
        }

        /* Descrição do projeto */
        .projeto {
            margin-bottom: 8px; 
            text-align: left;
        }

        .projeto p {
            margin: 2px 0 8px 16px; 
        }

        /* Links ficam da mesma cor do folder */
        a {
            text-decoration: none;
            color: #3fb950;
        }

        a:hover {
            text-decoration: underline;
        }