:root {
    --background: white;
    --primary: #333333;
    --foreground: #e7f4c9;
    --secondary: #909090;
    --secondary-light: #c8c8c8;
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.4rem;
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--background);
    color: var(--primary);
}

header {
    text-align: center;
    margin: 4rem 2rem;
}

header img {
    width: auto;
    height: 8rem;
}

main {
    margin: 3rem;
}

main section {
    display: flex;
    font-weight: bold;
    background-color: var(--foreground);
    margin: 2rem auto;
    padding: 1rem;
    max-width: 80rem;
}

main section span {
    display: block;
    margin-right: 1rem;
    color: var(--secondary-light);
    font-size: 5rem;
}

main section input {
    flex: 1;
    min-width: 0;
    background: transparent;
    color: var(--secondary);
    font-size: 5rem;
    font-weight: bold;
    border: 0;
    outline: none;
    text-align: right;
}

footer {
    text-align: center;
    font-size: 1.4rem;
    color: var(--secondary);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.meu-botao {
    background-color: #4CAF50;   /* Cor de fundo (verde) */
    color: white;                /* Cor do texto */
    padding: 10px 20px;          /* Espaçamento interno */
    border: none;                /* Sem borda */
    border-radius: 5px;          /* Cantos arredondados */
    font-size: 16px;             /* Tamanho da fonte */
    cursor: pointer;             /* Cursor de mão ao passar o mouse */
    transition: background-color 0.3s ease;  /* Animação de hover */
    font-weight: bolder;
  }
  
  .botoes {
    display: flex;
    flex-direction: column;  /* organiza verticalmente */
    align-items: center;     /* centraliza horizontalmente */
    gap: 20px;               /* espaço entre grupos */
    margin-top: 20px;
  }
  
  .grupo-conversao {
    display: flex;
    gap: 20px;               /* espaço entre os dois botões */
  }
  
  .meu-botao:hover
  {
    background-color: #073d09b0;
  }
  .meu-botao2 {
    background-color: #dc3545; /* vermelho */
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bolder;
    transition: background-color 0.3s ease;
  }
  
  .meu-botao2:hover {
    background-color: #ac1a29;
  }
  
section button {
    margin: 0; /* remove margem padrão */}

   