html {
    font-family: "Rubik", sans-serif;
  }
  
  body {
    background-color: rgb(155, 152, 153);
    color: white;
    /* padding: 3rem 15rem; */
    min-height: 90svh;
    overscroll-behavior: none;
    display: grid;
    place-items: center;
  }
  
  .container {
    max-width: 1200px;
    /* width: 80%; */
    margin: 0 auto;
    padding-inline: 2rem;
  }
  .top {
    text-align: center;
    margin: 2rem;
  }
  .top h1 {
    font-size: 5rem;
  }
  
  .top p {
    font-size: 1.3rem;
  }
  
  .mid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    font-family: "Rubik", sans-serif;
  }
  
  input {
    width: 40%;
    /* width: 20rem; */
    background: transparent;
    border: 1px solid black;
    border-radius: 5px;
    height: 2rem;
    cursor: pointer;
    box-shadow: 1px 0px 10px black;
    text-indent: 1rem;
  }
  
  input::placeholder {
    color: black;
    text-transform: uppercase;
  }
  
  button {
    background-color: black;
    color: white;
    border-radius: 8px;
    border: none;
    padding: 1rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  button:hover {
    background-color: white;
    color: black;
  }
  
  .result {
    text-align: center;
    font-size: 1.5rem;
  }
  
  .last div {
    display: flex;
    justify-content: start;
    padding: 3rem;
  }
  
  ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .restart {
    background-color: black;
    color: white;
    border-radius: 8px;
    margin: 2rem auto;
    display: grid;
    place-items: center;
    border: none;
    padding: 1rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .restart:hover {
    background-color: white;
    color: black;
  }