 @font-face {
    font-family: 'Wl021';
    src: url('Wl021-Regular.ttf') format('truetype');
  }

body{
    background-color: rgb(45, 46, 48);
    text-align: center;
font-family:'WL021', sans-serif;


}
h1{
    font-size: 50px;
}
img{
    max-width: 120px;
}
@keyframes mudarCor {
    0%   { color: rgb(0, 170, 255); }   
    15%  { color: rgb(170, 0, 255); }   
    30%  { color: rgb(255, 0, 77); }     
    45%  { color: rgb(255, 255, 0); }  
    60%  { color: rgb(0, 255, 0); }      
    75%  { color: rgb(0, 255, 255); }   
    90%  { color: rgb(255, 102, 0); }    
    100% { color: rgb(0, 170, 255); }    
}

/*4*/
h1 {

    animation: mudarCor 5s infinite;
    visibility: visible;
}
p{
    font-size: 40px;
    text-align: center;
    color: white; 
}

    /* Estilos do terminal-loader */
    .terminal-loader {
      border: 0.1em solid #333;
      background-color: #1a1a1a;
      color: #0f0;
    
      font-size: 1em;
      padding: 1.5em 1em;
      width: 12em;
      margin: 20px auto; /* Centraliza horizontalmente */
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      border-radius: 4px;
      position: relative;
      overflow: hidden;
      box-sizing: border-box;
    }

    /* Resto do CSS */
    @keyframes blinkCursor {
      50% {
        border-right-color: transparent;
      }
    }

    @keyframes typeAndDelete {
      0%,
      10% {
        width: 0;
      }
      45%,
      55% {
        width: 10em;
      }
      90%,
      100% {
        width: 0;
      }
    }

    .terminal-header {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1.5em;
      background-color: #333;
      border-top-left-radius: 4px;
      border-top-right-radius: 4px;
      padding: 0 0.4em;
      box-sizing: border-box;
    }

    .terminal-controls {
      float: right;
    }

    .control {
      display: inline-block;
      width: 0.6em;
      height: 0.6em;
      margin-left: 0.4em;
      border-radius: 50%;
      background-color: #777;
    }

    .control.close {
      background-color: #e33;
    }

    .control.minimize {
      background-color: #ee0;
    }

    .control.maximize {
      background-color: #0b0;
    }

    .terminal-title {
      float: left;
      line-height: 1.5em;
      color: #eee;
    }

    .text {
      display: inline-block;
      white-space: nowrap;
      overflow: hidden;
      border-right: 0.2em solid green;
      animation: typeAndDelete 4s steps(11) infinite,
        blinkCursor 0.5s step-end infinite alternate;
      margin-top: 1.5em;
    }

    /* Estilos para os parágrafos (opcional) */
    p {
      text-align: center;
      margin: 10px auto;
      max-width: 600px;
    }
 
