
* {
    font-family: Arial, sans-serif;
    color: white;
}

.note {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.note h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    color: #fff;
}

.note p {
    margin: 0;
    font-size: 1rem;
    color: #eee;
}

.note:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}