/* General body styling */
body {
    font-family: 'Cursive', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Styling for the main containers */
.note-container,
.quiz-container {
    list-style: none;
    padding: 20px;
    margin: 20px auto;
    max-width: 600px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Styling for each note and quiz item */
.note, .quiz {
    margin: 10px 0;
    padding: 10px;
    border-left: 5px solid #e68cdd;
    background-color: #e9ecef;
    border-radius: 5px;
    transition: transform 0.2s ease-in-out;
}

/* Styling for the note and quiz text links */
.note-text, .quiz-text {
    text-decoration: none;
    color: #ef73f4;
    font-weight: bold;
    transition: color 0.2s ease-in-out;
}

/* Hover effects for note and quiz items */
.note:hover, .quiz:hover {
    transform: translateX(10px);
}

/* Hover effects for text links */
.note-text:hover, .quiz-text:hover {
    color: #000000;
}

.header{
    font-family: cursive;
    font-size: 20px;
}

.note-container, .quiz-container{
    margin-top: 50px;
    font-weight: bold;
}

.hello{
    font-family: cursive;
    text-align: center;
    margin-top: 30px;
}

.note-text,.quiz-text{
    font-family: cursive;
    font-size: 20px;
}

footer {
    background-color: #f8f9fa;
    padding: 10px 20px;
    text-align: center;
    border-top: 1px solid #dee2e6;
    position: relative;
    bottom: 0;
    width: 100%;
    font-family:Arial, Helvetica, sans-serif
}