
body {
    margin: 0;
    padding: 0;
    display: flex;
    min-height: 100vh;
    flex-direction: column; /* Stack items vertically */
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #f8a57f, #f7c169); /* Gradient colors */
    cursor: radial-gradient(circle, rgb(190, 52, 75) 10%, transparent 10.01%), auto;
}


  
  button {
    display: inline-block;
    margin-right: 10px;
    background-color: #ffd699;
  }

  
.star {
    position: absolute;
    width: 5px;
    height: 5px;
    background: linear-gradient(to right, #f9f9f8, #feb47b); /* Gradient colors */
    border-radius: 50%;
    pointer-events: none; 
    transition: transform 0.5s ease-out;
}

.task-container {
    background-color: #ffd699; /* Pastel Yellow */
    margin: 20px; /* margin for spacing */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* shadow */
    text-align: center;
}

.task-containertwo {
    background-color: #f8a57f; /* Pastel orange? */
    margin: 20px; /* margin for spacing */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* shadow */
    text-align: center;
}

#button-container {
    margin-top: 20px; 
}

/*  task title */
h1 {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
}

/* task description */
p {
    color: #555;
    font-size: 16px;
}

/* links */
ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

ul li {
    margin: 10px;
}

ul li a {
    display: inline-block;
    padding: 20px 20px;
    background-color: #e39a5d; /*  button */
    color: white;
    border-radius: 20px;
    text-decoration: none;
}

ul li a:hover {
    background-color: #c3825f; /* button hover */
}

canvas {
    border: 1px solid black;
    display: block;
    margin: 0 auto;
}
