/* styles.css */

#head {
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
  }

  #container {
    width: 50%;
    height: 50vh;
    border: 3px solid black;
    position: relative;
  }

  #mover {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px;
  }

  #h3 {
    font-size: 2em;
    position: absolute;
    margin: 0px;
  }

  #food {
    font-size: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
  }

  .enemy {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 2s linear;
  }

  body {
    background-color: blanchedalmond;
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 100%;
    justify-content: center;
  }

  #paragraph {
    font-size: 1.2em;
    text-align: center;
    margin-top: 20px;
  }
