.teste-velocidade{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
    background-color: #f88d2f;
    font-family: "Noto Sans", sans-serif;
    color: #ffffff;
    box-shadow: inset 0 0 50px 25px rgba(0, 0, 0, 0.3);
}

.base-teste h1, .base-teste h2, .base-teste .velocimetro, .base-teste .base-botao-teste {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.divisoria-teste{
    height: 1px;
    width: 50%px;
    background-color: #355583;
}

#teste {
    background-color: #355583;
    border: #355583 2px solid;
    padding: 20px 40px 20px 40px;
    font-size: 1.5rem;
    color: #ffffff;
    border-radius: 20px;
    cursor: pointer;
    transition: .3s;
}

#teste:hover{
    background-color: transparent;
    color: #355583;
    
}

/*   VELOCÍMETRO   */

.wrapper {  
    margin: 30px auto;  
    width: 200px;  
  }  
  
  .speedometer {  
    width: 200px;  
    height: 100px;  
    background: #547aa4;  
    border-radius: 200px 200px 0 0;  
    position: relative;  
  }  
  
  .pointer {  
    position: absolute;  
    bottom: 0px;  
    left: 50%;  
    width: 0;  
    height: 0;  
  }  
  
  .pointer::after {  
    content: "";  
    display: block;  
    width: 40px;  
    height: 20px;  
    border-radius: 40px 40px 0 0;  
    background: #333;  
    position: absolute;  
    bottom: -10px;  
    left: -20px;  
  }  
  
  .pointer::before {  
    content: "";  
    display: block;  
    position: absolute;  
    left: -2px;  
    bottom: 0px;  
    width: 5px;  
    height: 100px;  
    background: #e3761a;  
    transform-origin: center 100px;  
    animation: roll 1.5s alternate infinite;  
  }  
  
  @keyframes roll {  
    from {  
      transform: rotate(-90deg);  
    }  
    to {  
      transform: rotate(90deg);  
    }  
  }  