body {
    background-color: black;
    color: #fff;
    display: flex;
    flex-direction: column;
    height: 100vh;
    align-items: center;
    justify-content: center;
  }
  img {
    height: 3rem;
    cursor: pointer;
    border-width: 1px;
    border-color: #fff;
    border-style: solid;
    border-radius: 50%;
    padding: 30px;
  }
  .icon:hover {
    background-color: rgb(66, 4, 16);
  }
  .emoji {
    height: 3.2rem;
    border-style: none;
    border-radius: 0;
    padding: 0;
  }
  .button-con {
    display: flex;
    gap: 10px;
  }
  .button1 {
    width: 7rem;
    height: 3rem;
  }
  .description {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 35%;
    width: 50vw;
    margin: auto;
    align-items: center;
    color: purple;
  }
  .description span {
    color: red;
    font-weight: bold;
  }
  .js-result {
    display: flex;
    justify-content: center;
    font-size: 32px;
    padding: 5px;
    background-color: yellow;
    color: #1e1e1e;
    font-weight: bolder;
    border: 1px solid red;
  }
  .js-results {
    text-align: center;
  }
  .display-res {
    display: none;
  }