body {
    color: #444;
    background-image: url(./fundo.svg);
    background-repeat: no-repeat;
    background-size: cover;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    grid-template-rows: 250px 1fr;
    grid-template-columns: 1fr;
    grid-template-areas: 
    "logo"
    "principal";
}

* > {
  box-sizing: border-box;
}

.container{
    margin: 0 auto;
    max-width: 800px;
}

.logo{
    grid-area: logo;
    width: 50%;
    height: 50%;
    align-items: center;
    justify-content: center;
    margin: 0;
    width: 100%;
}

.logo > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.principal {
    grid-area: principal;
    margin-bottom: 30px;
}

.input {
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1.5rem;
    height: 54px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 8px 14px;
    width: 100%;
    outline: 0;
}

#valorTotal{
    color: ivory;
    background: rgba(0, 0, 0, 0.25);
    border: 4px solid #00AFCA;
    box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 18px;
  }

#valorEntrada{
    color: ivory;
    background: rgba(17, 51, 0, 0.25);
    border: 4px solid #B130A7;
    box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 18px;
}
  
  .input-container {
    max-width: 760px;
    padding: 10px 20px;
  }
  
  .input-container.value-container {
    margin-bottom: 12px;
  }
  
  div > h3{
      margin: 0;
      color: ivory;
  }


.tabelaParcelamento {
    margin-top: 30px;
    width: 100%;
    background: #000000;
    border: 3px solid #00AFCA;
    box-sizing: border-box;
    border-radius: 18px;
    color: ivory;
}

tbody{

    margin: 100px;
}


.tabelaParcelamento > tr > td {
    color: ivory;
    height: 30px;
    text-align: center;
    white-space: pre;
    width: 40%;
    background: #000000;
}

.tabelaParcelamento > tr > td:first-child {
  width: 20%;
}
