Vertical Alignment Issues

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Auto Fill vs Auto Fit</title>
  <link rel="preconnect" href="https://fonts.gstatic.com"> 
<link href="https://fonts.googleapis.com/css2?family=Satisfy&display=swap" rel="stylesheet">
  <style>
    .basket {
      width: 700px;
      height: 500px;
      border: blue solid 4px;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      }
      body  {
        font-family: Satisfy;
        font-size: 30px;
        color: rgb(65, 34, 15);
        }
      .one  {
        background-color: rgb(235, 110, 110);
      }
      .two  {
        background-color: rgb(235, 191, 110);
      }
      .three  {
        background-color: rgb(235, 233, 110);
      }
      .four  {
        background-color: rgb(110, 235, 158);
      }
      .five  {
        background-color: rgb(112, 110, 235);
      }
     
  </style>
</head>
<body>
  <div class="basket">
    <div class="one center">One</div>
    <div class="two center">Two</div>
    <div class="three center">Three</div>
    <div class="four center">Four</div>
    <div class="five center">Five</div>
  </div>
</body>
</html>