body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.post-it {
    background-color: #fff59d; /* Yellow post-it color */
    width: 300px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    transform: rotate(-2deg); /* Slight tilt for post-it effect */
    border: 1px solid #e0e0e0;
}

.post-it h2 {
    font-family: 'Arial';
    font-size: 1.5em;
    margin: 0 0 15px;
    color: #333;
    text-align: center;
}

.post-it form {
    display: flex;
    flex-direction: column;
}

.post-it label {
    font-size: 0.9em;
    margin-bottom: 5px;
    color: #333;
}

.post-it input {
    margin-bottom: 15px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 0.9em;
    background-color: #fff;
}

.post-it button {
    background-color: #ff0000;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
}

.post-it button:hover {
    background-color: #e55a50;
}












