body {
    font-family: sans-serif;
    text-align: center;
  }
  
  h1 {
    margin-bottom: 2em;
  }

  #ahorcado {
    position: relative;
    margin: 1em auto;
    width: 350px;
    height: 350px;
    background-image: url("../../img/Logo.svg");
    background-size: cover;
  }
  
  #formulario {
    display: flex;
    justify-content: center;
    margin-top: 1em;
  }
  
  #formulario input[type='text'] {
    flex: 1;
    padding: 0.5em;
    font-size: 1.2em;
    border: none;
    border-radius: 0.5em 0 0 0.5em;
    background-color: rgb(209, 208, 208);
  }
  
  #formulario input[type='button'] {
    padding: 0.5em 1em;
    font-size: 1.2em;
    border: none;
    border-radius: 0 0.5em 0.5em 0;
    background-color: #333;
    color: #fff;
  }
  #formulario input[type='button']:hover {
    background-color: #444;
    cursor: pointer;
  }
  #palabra {
    margin: 1em auto;
    font-size: 2em;
    text-transform: uppercase;
  }
  
  #palabra span {
    border-bottom: 2px solid #333;
  }
  