@font-face {
    font-family: 'fontekids';
    src: url('../../font/fonts/Montserrat-Regular.otf') format('truetype');
  }
/* Estilo global */
body {
    font-family: 'fontekids', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: linear-gradient(to bottom, #333, #ccc);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  /* Estilo para o título */
  h2 {
    font-family: 'fontekids', Arial, sans-serif;
    font-size: 36px;
    color: #fff;
    margin-bottom: 20px;
  }
  
  /* Estilo para o formulário */
  form {
    background-color: #fff;
    width: 500px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
  
  /* Estilo para os labels e inputs */
  label {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
  }
  
  input[type="text"], input[type="number"] {
    width: 90%;
    height: 40px;
    font-size: 18px;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  /* Estilo para o botão */
  button {
    width: 100%;
    height: 40px;
    font-size: 18px;
    background-color: #e7780fe8;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #8b4604e8;
  }
  
  /* Estilo para o resultado */
  #resultado {
   
    font-size: 24px;
    color: #fff;
    margin-top: 20px;
  }