.note-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.note-link {
    background-color: #3a3a3a;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    transition: background-color 0.2s ease;
    width: 80%;
    max-width: 400px;
    text-align: center;
}

.note-link:hover {
    background-color: #555;
}
