body {
    font-family: 'Ubuntu', sans-serif;
    text-align: center;
    background: linear-gradient(to bottom, #f1d4e3, #ff85ed);
    color: white;
    text-shadow: -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black, 1px 1px 0 black; /* Thin black border */
}
h1 {
    color: rgb(235, 194, 253);
}
h3 {
    color: white;
}
.buttons {
    display: flex;
    gap: 20px; /* Adjust the gap to control the space between buttons */
    justify-content: center;
    margin-top: 20px; /* Add margin to separate from the headings */
    align-items: center; /* Center items horizontally */
    margin-bottom: 50px;
}
button {
    font-family: 'Ubuntu', sans-serif;
    margin-top: 20px;
    text-align: center;
    margin-bottom: 20px;
    padding: 10px 20px 5px 15px;
    font-size: 16px;
    border: none;
    background-color: #ff98d4; /* Green background color */
    color: white; /* Text color */
    border-radius: 30px; /* Adjust the border-radius for a round shape */
    cursor: pointer;
    transition: background-color 0.3s; /* Add a smooth transition effect */
    border: 2px solid #f9ceff;
    }

button:hover {
    background-color: #f7c7ec; /* Darker green color on hover */
  }

#word {
    font-size: 100px;
    margin-bottom: 40px;
}

#timer {
    font-size: 80px;
    text-align: center;
    margin-bottom: 600px;
    color: rgb(255, 0, 0);
  }