.grid {
    width: 400px;
    height: 600px;
    background-color: rgb(247, 238, 113);
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 200px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doodler {
    width: 60px;
    height: 85px;
    background-color: rgb(221, 92, 92);
    position: absolute;
}

.platform {
    width: 85px;
    height: 15px;
    background-color: rgb(108, 202, 108);
    position: absolute;
}

button {
    display: flex;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -khtml-border-radius: 5px;
    background: #ffdf99;
    color: #000;
    border: solid 2px #000;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    padding: 10px;
    margin: 0 auto;
    outline: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  button:hover {
    background: #ffae00d5;
  }

  .center-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.score {
    font-size: 190px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #222;
}

.info-paragraph {
    font-size: 20px;
    color: #000;
    text-align: center;
    margin-top: 10px;
}